.knowledgeCenter section {
    padding: 50px 0px;
    scroll-margin-top: 100px;
}

.knowledgeCenter h2 {
    color: #233253;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    margin-bottom: 26px;
}

.knowledgeCenter .subHeading {
    color: #233253;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 18px;
}

.knowledgeCenter .youtubeList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin-bottom: 55px;
}

.knowledgeCenter .youtubeCard {
    max-width: 435px;
    width: 100%;
}

.knowledgeCenter .youtubeCard__description h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 15px;
    color: #233253;
}

.knowledgeCenter .youtubeCard__description p {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 25px;
    height: 90px;
    overflow-y: auto;
    color: #454545;
}

.knowledgeCenter .youtubeCard__description .red-text {
    color: #ED1C24;
}

.knowledgeCenter .youtubeCard__thumbnail {
    position: relative;
    width: 100%;
}

.knowledgeCenter .youtubeCard__thumbnail .youtube__playIcon {
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.knowledgeCenter .youtubeCard__thumbnail .thumbnail,
.knowledgeCenter .youtubeCard__thumbnail .youtube__playIcon img {
    width: 100%;
    height: auto;
}

.knowledgeCenter .viewBtn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.knowledgeCenter .viewBtn button {
    border: none;
    min-width: 158px;
    max-width: max-content;
    color: #ffffff;
    background-color: #EB1C24;
    text-align: center;
    border-radius: 30px;
    padding: 12px 8px;
    cursor: pointer;
}

.knowledgeCenter .viewBtn button:focus {
    outline: none;
}

.knowledgeCenter .viewBtn button.view-less {
    display: none;
}

@media screen and (max-width:768px) {
    .knowledgeCenter section {
        padding: 20px 0px;
    }

    .knowledgeCenter h2 {
        font-size: 24px;
    }

    .knowledgeCenter .youtubeList {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .knowledgeCenter .youtubeCard__description {
        text-align: center;
    }

    .knowledgeCenter .youtubeCard__description h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .knowledgeCenter .youtubeCard__description p {
        font-size: 16px;
        margin-bottom: 15px;
        min-height: 100%;
    }
}

