.about {
    margin-bottom: 50px;
}
.materialContent {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    border-radius: 25px 25px 0 0;
    padding: 22px 50px;
    margin-bottom: 20px;
}
.materialSpan {
    width: max-content;
    background: #00b1290f;
    border-radius: 55px;
    padding: 7px 15px;
    font-size: 12px;
}
.materialWrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 530px;
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
        'contentPost post banner'
        'contentPost post experts'
        'contentPost post experts';
    gap: 30px 20px;
    margin-bottom: 15px;
}

.materialWrapper > *:nth-child(1) {
    grid-area: contentPost;
}
.materialWrapper > *:nth-child(2) {
    grid-area: post;
}
.materialWrapper > *:nth-child(3) {
    grid-area: banner;
}
.materialWrapper > *:nth-child(4) {
    grid-area: experts;
}
.banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 15px 15px 15px;
}
.bannerBtns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.contentPost {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 25px 15px;
    background-color: #fff;
    border-radius: 12px;
    height: max-content;
}
.contentPostTitle {
    font-weight: 700;
}
.post {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.materialPosts {
    padding: 25px 45px;
    background-color: #fff;
    border-radius: 12px;
}
.experts-material--base {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 20px;
    background-color: #fff;
    height: max-content;
}
.expertsCardsMaterial {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.materialShareBtn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.materialShare {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: flex-end;
}
.copyLink {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.materialShareDropdown {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    top: 100%;
    right: -35px;
    background-color: white;
    border-radius: 2px;
    margin-top: 10px;
    z-index: 1000;
    box-shadow: 0px 2px 8px 0px #00000026;
}
.materialShareDropdown::after {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    z-index: -1;
}
.read {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.readList {
    display: grid;
    gap: 20px;
}
.readList:has(> :nth-child(4)) {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.readList:not(:has(> :nth-child(4))) {
    grid-template-columns: repeat(auto-fit, 250px);
    justify-content: start;
}
.note {
    font-size: clamp(10px, 3vw, 12px);
    color: #00000099;
    padding: 30px 0;
    padding-left: 20px;
}
.materialPostsViews {
    display: flex;
    align-items: center;
    gap: 10px;
}
.materialPostsText {
    display: flex;
    flex-direction: column;
}
.material .home-form{
    padding: 0;
    background: none;
}
.material .home-form .container{
    padding: 0;
}
.material .home-form-img img{
    max-width: 70%;
}
.material .home-form-img{
    justify-items: right;
}
.materialPostsHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.materialPosts {
    padding: 25px 45px;
    background-color: #fff;
    border-radius: 12px;
}
.materialPostsHeader p {
    color: #373b42;
    font-size: 14px;
}
.materialPostsText {
    display: flex;
    flex-direction: column;
}

.materialPostsText ul,
.materialPostsText ol {
    padding-left: 25px;
}
.materialPostsText li {
    list-style-type: disc;
}
.materialPostsText a {
    color: #2457fe;
}
.materialPostsText h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 32px;
}
.materialPostsText h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 128%;
}
.articleToc {
    padding-left: 10px;
}
.articleTocItem {
    color: var(--green);
}

.articleTocH3 {
    padding-left: 15px;
}
.articleTocH4 {
    padding-left: 10px;
}
.articleTocNumber {
    color: black;
}
.hidden {
    display: none;
}

@media (max-width: 1280px) {
    .materialWrapper {
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .materialWrapper {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }
    .readList {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .materialShare {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .materialContent {
        padding: 14px 10px;
        gap: 20px;
    }
    .materialSpan {
        width: auto;
    }
    .materialShareLink {
        width: 100%;
        padding: 15px;
    }
    .materialPosts {
        padding: 20px;
    }
}
