.banner {
    width: 100%;
    height: 100%;
}

.banner__bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #5f4b8b;
}

.banner__bg--img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    z-index: 0;
    opacity: 0.5;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner__content {
    position: relative;
    z-index: 2;
    padding: 158px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.banner__content--tag {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 122%;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.banner__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.banner__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
}

.section {
    padding: 80px 0;
    background: #fff;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.text h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 34px;
    line-height: 150%;
    color: #000;
}

.text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #333;
    max-width: 800px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    margin-top: 32px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-radius: 12px;
    padding: 28px 32px;
    background: #f7f7fa;
    width: 100%;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 10px 24px rgba(95, 75, 139, 0.14);
}

.card__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #5433a6;
}

.card__title span {
    border-radius: 4px;
    width: 24px;
    height: 24px;
    background: #5433a6;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease;
}

.card:hover .card__title span {
    transform: scale(1.12) rotate(-4deg);
    background: #5f4b8b;
}

.card p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #595959;
}

.link {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #5433a6;
    transition: color 0.25s ease, transform 0.25s ease;
}

.link:hover {
    color: #5f4b8b;
    transform: translateX(4px);
}

.link span {
    border-radius: 4px;
    width: 20px;
    height: 20px;
    background: #5433a6;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease;
}

.link:hover span {
    transform: scale(1.12) rotate(-4deg);
    background: #5f4b8b;
}

.calendar {
    width: 100%;
    height: 710px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 32px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(95, 75, 139, 0.12);
}

.calendar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.calendar:hover img {
    transform: scale(1.01);
}

@media (max-width: 991px) {
    .banner__content {
        padding: 130px 0 48px;
    }

    .banner__title {
        font-size: 42px;
    }

    .banner__desc {
        font-size: 16px;
    }

    .section {
        padding: 56px 0;
    }

    .text {
        gap: 18px;
    }

    .text h2 {
        font-size: 28px;
    }

    .text p {
        font-size: 15px;
    }

    .grid {
        margin-top: 28px;
    }

    .card {
        padding: 24px 26px;
    }

    .calendar {
        height: 560px;
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .banner__content {
        padding: 110px 0 40px;
        gap: 12px;
    }

    .banner__content--tag {
        font-size: 14px;
    }

    .banner__title {
        font-size: 32px;
    }

    .banner__desc {
        font-size: 15px;
    }

    .section {
        padding: 48px 0;
    }

    .text {
        gap: 14px;
    }

    .text h2 {
        font-size: 24px;
        line-height: 135%;
    }

    .text p {
        font-size: 15px;
    }

    .grid {
        margin-top: 24px;
        gap: 16px;
    }

    .card {
        padding: 22px 20px;
    }

    .card__title {
        align-items: flex-start;
        font-size: 17px;
    }

    .card__title span {
        width: 22px;
        height: 22px;
        margin-top: 2px;
    }

    .card p {
        font-size: 14px;
    }

    .link {
        align-items: flex-start;
        font-size: 15px;
        line-height: 145%;
    }

    .link span {
        margin-top: 2px;
    }

    .calendar {
        height: auto;
        margin-top: 24px;
        padding: 12px;
    }

    .calendar img {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 575px) {
    .banner__content {
        padding: 100px 0 32px;
    }

    .banner__title {
        font-size: 26px;
        letter-spacing: 0.04em;
    }

    .banner__desc br {
        display: none;
    }

    .section {
        padding: 40px 0;
    }

    .text h2 {
        font-size: 22px;
    }

    .text p br {
        display: none;
    }

    .grid {
        margin-top: 20px;
    }

    .card {
        padding: 18px;
        border-radius: 10px;
        gap: 10px;
    }

    .card__title {
        font-size: 16px;
        gap: 10px;
    }

    .card__title span {
        width: 20px;
        height: 20px;
    }

    .card p {
        font-size: 14px;
        line-height: 145%;
    }

    .link {
        width: 100%;
        margin-top: 16px;
        font-size: 14px;
    }

    .link span {
        width: 18px;
        height: 18px;
    }

    .calendar {
        padding: 8px;
        margin-top: 20px;
        border-radius: 6px;
    }
}

@media (hover: none) {
    .card:hover,
    .calendar:hover {
        transform: none;
        box-shadow: none;
    }

    .card:hover .card__title span,
    .link:hover span,
    .calendar:hover img {
        transform: none;
    }

    .link:hover {
        transform: none;
    }
}


.news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 24px;
    margin-bottom: 56px;
}

.news > .data-aos {
    height: 100%;
}

.news__card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e6f1;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(95, 75, 139, 0.06);
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news__card:hover {
    transform: translateY(-6px);
    border-color: rgba(95, 75, 139, 0.22);
    box-shadow: 0 16px 34px 0 rgba(95, 75, 139, 0.16);
}

.news__card--img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news__card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    transition: transform 0.45s ease;
}

.news__card:hover .news__card--img img {
    transform: scale(1.06);
}

.news__card--content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding: 24px;
}

.news__card--text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.news__date {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f4b8b;
}

.news__card--title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 139%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #111827;
    transition: color 0.25s ease;
}

.news__card:hover .news__card--title {
    color: #5f4b8b;
}

.news__card--desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #565656;
}

.news__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 13px;
    color: #5f4b8b;
}

.news__btn svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.news__card:hover .news__btn svg {
    transform: translateX(4px);
}

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

.news__pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e8e6f1;
    border-radius: 60px;
    padding: 12px;
    background: #fff;
}

.button__back,
.button__prev,
.news__pag--num {
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button__back,
.button__prev {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    width: 32px;
    height: 32px;
    background: #eeecf8;
    color: #5f4b8b;
}

.button__back:hover,
.button__prev:hover {
    background: #5f4b8b;
    color: #fff;
    transform: translateY(-2px);
}

.news__pag--nums {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news__pag--num {
    border-radius: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #565656;
}

.news__pag--num:hover {
    background: #eeecf8;
    color: #5f4b8b;
}

.news__pag--num.active {
    background: #5f4b8b;
    color: #fff;
}

@media (max-width: 991px) {
    .news {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 44px;
    }

    .news__card--img {
        height: 210px;
    }

    .news__card--content {
        padding: 20px;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .news {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 36px;
    }

    .news__card {
        border-radius: 12px;
    }

    .news__card--img {
        height: 180px;
    }

    .news__card--content {
        padding: 18px;
        gap: 20px;
    }

    .news__card--title {
        font-size: 16px;
    }

    .news__card--desc {
        font-size: 13px;
    }

    .news__pagination {
        padding: 8px;
        gap: 6px;
    }

    .news__pag--nums {
        gap: 4px;
    }
}

@media (max-width: 575px) {
    .news {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .news__card--img {
        height: 210px;
    }

    .news__card--content {
        padding: 18px;
    }

    .news__date {
        font-size: 11px;
    }

    .news__card--title {
        font-size: 17px;
    }

    .news__card--desc {
        font-size: 14px;
    }

    .news__pagination {
        max-width: 100%;
    }

    .button__back,
    .button__prev,
    .news__pag--num {
        width: 30px;
        height: 30px;
    }

    .news__pag--num {
        font-size: 13px;
    }
}

@media (hover: none) {
    .news__card:hover,
    .button__back:hover,
    .button__prev:hover {
        transform: none;
    }

    .news__card:hover .news__card--img img,
    .news__card:hover .news__btn svg {
        transform: none;
    }
}









.news-single {
    width: 100%;
}

.news-single__date {
    display: block;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f4b8b;
}

.news-single__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: start;
    gap: 48px;
}

.news-single__content {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #565656;
}

.news-single__content h2 {
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 34px;
    line-height: 150%;
    color: #000;
}

.news-single__content h3 {
    margin: 28px 0 14px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #000;
}

.news-single__content p {
    margin-bottom: 20px;
}

.news-single__content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 20px;
}

.news-single__content ol {
    list-style: decimal;
    padding-left: 22px;
    margin-bottom: 20px;
}

.news-single__content li {
    margin-bottom: 8px;
}

.news-single__content a {
    color: #5f4b8b;
    text-decoration: underline;
}

.news-single__img {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(95, 75, 139, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-single__img:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(95, 75, 139, 0.16);
}

.news-single__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-single__img:hover img {
    transform: scale(1.05);
}

.news-single__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #5f4b8b;
    transition: color 0.25s ease, transform 0.25s ease;
}

.news-single__back svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.news-single__back:hover {
    color: #4a3a6e;
    transform: translateX(-3px);
}

.news-single__back:hover svg {
    transform: translateX(-3px);
}

.news-single__content ul,
.news-single__content ol {
    padding-left: 24px;
    margin: 0 0 20px;
}

.news-single__content ul {
    list-style: disc;
}

.news-single__content ol {
    list-style: decimal;
}

.news-single__content li {
    margin-bottom: 8px;
    font-family: var(--font-family);
    line-height: 175%;
    color: #565656;
}

@media (max-width: 991px) {
    .news-single__grid {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }

    .news-single__img {
        height: 360px;
    }

    .news-single__content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .news-single__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .news-single__img {
        order: -1;
        height: 320px;
    }

    .news-single__content {
        font-size: 15px;
    }

    .news-single__content h2 {
        font-size: 24px;
        line-height: 140%;
    }

    .news-single__content h3 {
        font-size: 20px;
    }

    .news-single__back {
        margin-top: 32px;
    }
}

@media (max-width: 575px) {
    .news-single__date {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .news-single__grid {
        gap: 22px;
    }

    .news-single__img {
        height: 240px;
        border-radius: 12px;
    }

    .news-single__content {
        font-size: 14px;
        line-height: 170%;
    }

    .news-single__content h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .news-single__content h3 {
        font-size: 18px;
    }

    .news-single__content p {
        margin-bottom: 16px;
    }

    .news-single__back {
        margin-top: 28px;
        font-size: 13px;
    }
}

@media (hover: none) {
    .news-single__img:hover,
    .news-single__back:hover,
    .news-single__img:hover img,
    .news-single__back:hover svg {
        transform: none;
    }
}