.breadcrumb {
    width: 100%;
    margin-bottom: 20px;
}
.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 20px;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}
.breadcrumb__list li:last-child {
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
@media (max-width: 767.98px) {
    .breadcrumb__list {
        flex-wrap: nowrap;
    }
    .breadcrumb__list li:last-child {
        width: fit-content;
        max-width: 535px;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
}
.breadcrumb__item {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: #45464a;
    text-decoration: none;
    white-space: nowrap;
}
.breadcrumb__item--home {
    color: #45464a;
}
.breadcrumb__item--home:hover {
    color: #00529c;
}
.breadcrumb__item--current {
    color: #45464a;
    cursor: default;
}
.breadcrumb__item:not(.breadcrumb__item--current):not(.breadcrumb__item--home):hover {
    color: #00529c;
}
.breadcrumb a.breadcrumb__item {
    transition: color 0.2s ease;
}
.breadcrumb a.breadcrumb__item:hover {
    text-decoration: none;
}
.breadcrumb__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #45464a;
}
.breadcrumb__icon {
    width: 16px;
    height: 16px;
    color: #45464a;
    flex-shrink: 0;
}

.news-title {
    background: #ffffff;
    padding-bottom: 40px;
    padding-top: 20px;
}
.news-title .container {
    padding-right: 20px;
    padding-left: 20px;
}
.news-title__wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.news-title .breadcrumb {
    margin-bottom: 0;
}
.news-title__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.news-title__heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #111832;
    margin: 0;
    width: 100%;
}
@media (max-width: 768px) {
    .news-title__heading {
        font-size: 32px;
        line-height: 1.3;
    }
}
@media (max-width: 480px) {
    .news-title__heading {
        font-size: 24px;
    }
}
.news-title__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.news-title__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.news-title__category-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
}
.news-title__separator {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #45464a;
}
.news-title__date {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #6D6D6D;
}
.news-title__image-container {
    width: 100%;
    margin-top: 40px;
}
.news-title__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 720px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .news-title__image-wrapper {
        height: 600px;
    }
}
@media (max-width: 1024px) {
    .news-title__image-wrapper {
        height: 500px;
        border-radius: 24px;
    }
}
@media (max-width: 768px) {
    .news-title__image-wrapper {
        height: 350px !important;
        border-radius: 20px;
    }
}
@media (max-width: 480px) {
    .news-title__image-wrapper {
        height: 250px !important;
        border-radius: 16px;
    }
}
.news-title__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-details {
    background: #ffffff;
    padding: 40px 0 40px;
}
.news-details .container {
    padding-right: 20px;
    padding-left: 20px;
}
.news-details__content {
    display: flex;
    gap: 40px;
    flex-direction: row-reverse;
    position: relative;
}
@media (max-width: 1024px) {
    .news-details__content {
        flex-direction: column;
        gap: 0 !important;
    }
}
.news-details__sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .news-details__sidebar {
        position: static;
        width: 100%;
        align-items: center;
        flex-direction: row;
        justify-content: space-between !important;
        padding-top: 20px;
        border-top: 1px solid #e8eef0;
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
}
.news-details__share-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #111832;
}
@media (max-width: 1024px) {
    .news-details__share-title {
        writing-mode: horizontal-tb;
        transform: none;
    }
}
.news-details__share-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 1024px) {
    .news-details__share-buttons {
        flex-direction: row;
    }
}
.news-details__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e8eef0;
    border: 1px solid #e8eef0;
    border-radius: 8px;
    color: #111832;
    text-decoration: none;
    transition: all 0.3s ease;
}
.news-details__share-btn:hover {
    background: #ffffff;
    border-color: #1bb5ec;
    color: #1bb5ec;
}
.news-details__share-btn svg {
    width: 20px;
    height: 20px;
}
.news-details__article {
    max-width: 841px;
    margin: 0 auto;
    color: #111832;
}
.news-details__article article {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #45464a;
}
.news-details__article div {
    margin-bottom: 40px;
}
.news-details__article p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #45464a;
}
.news-details__article .gradient {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
    margin: auto;
}
.news-details__article h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    color: #111832;
    margin: 40px 0 12px 0;
}
.news-details__article h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: #111832;
    margin: 40px 0 12px 0;
}
.news-details__article h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #111832;
    margin: 40px 0 12px 0;
}
.news-details__article ul,
.news-details__article ol {
    margin: 0 0 12px 0;
    padding-left: 24px;
}
.news-details__article ul li,
.news-details__article ol li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #45464a;
    margin-bottom: 12px;
}
.news-details__article ul li:last-child,
.news-details__article ol li:last-child {
    margin-bottom: 0;
}
.news-details__article ul {
    list-style-type: disc;
}
.news-details__article ol {
    list-style-type: decimal;
}
.news-details__article img {
    width: 100%;
    height: 473px;
    border-radius: 12px;
    margin: 24px 0 12px 0;
    display: block;
}
.news-details__article .table {
    margin: 24px 0 12px 0;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 12px;
}
.news-details__article table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}
.news-details__article table thead tr {
    border-bottom: 1px solid #e8eef0;
}
.news-details__article table thead tr th {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #111832;
    padding: 16px 20px;
    text-align: center;
    border-right: 1px solid #cccccc;
}
.news-details__article table thead tr th:last-child {
    border-right: none;
}
.news-details__article table tbody tr {
    border-bottom: 1px solid #e8eef0;
}
.news-details__article table tbody tr:last-child {
    border-bottom: none;
}
.news-details__article table tbody tr td {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #45464a;
    padding: 16px 20px;
    border-right: 1px solid #cccccc;
    text-align: center;
}
.news-details__article table tbody tr td:last-child {
    border-right: none;
}
.news-details__article table tfoot {
    background: #e8eef0;
}
.news-details__article table tfoot tr td {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #111832;
    padding: 16px 20px;
    text-align: center;
}
.news-details__article blockquote {
    margin: 24px 0;
    padding-top: 32px;
    position: relative;
}
.news-details__article blockquote::before {
    content: url('data:image/svg+xml,<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.9901 0.19802L20.506 3.85039C19.3033 3.76238 18.3938 3.99707 17.7778 4.55445C17.1617 5.11184 16.7657 5.87459 16.5897 6.84268C16.4136 7.81078 16.3696 8.88155 16.4576 10.055H20.9901V20H12.3652V8.73487C12.3652 5.65456 13.1133 3.337 14.6095 1.78218C16.1349 0.19802 18.2618 -0.330033 20.9901 0.19802ZM8.62486 0.19802L8.14081 3.85039C6.93803 3.76238 6.0286 3.99707 5.41254 4.55445C4.79648 5.11184 4.40044 5.87459 4.22442 6.84268C4.0484 7.81078 4.0044 8.88155 4.09241 10.055H8.62486V20H0V8.73487C0 5.65456 0.748075 3.337 2.24422 1.78218C3.76971 0.19802 5.89659 -0.330033 8.62486 0.19802Z" fill="url(%23paint0_linear_1582_6539)"/><defs><linearGradient id="paint0_linear_1582_6539" x1="20.9901" y1="10" x2="0" y2="10" gradientUnits="userSpaceOnUse"><stop stop-color="%234858EF"/><stop offset="1" stop-color="%231BB5EC"/></linearGradient></defs></svg>');
    position: absolute;
    top: 0px;
    left: 0px;
}
.news-details__article blockquote p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #45464a;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}
.news-details__article blockquote footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}
.news-details__article a {
    color: #1bb5ec;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.news-details__article a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.news-details__caption {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #45464a;
    text-align: center;
    margin: 0 0 32px 0;
    font-style: italic;
}
@media (max-width: 768px) {
    .news-details {
        padding: 0 0 40px 0 !important;
    }
    .news-details article p {
        font-size: 15px;
    }
    .news-details article h2 {
        font-size: 20px;
        margin: 32px 0 16px 0;
    }
    .news-details article h3 {
        font-size: 18px;
        margin: 24px 0 12px 0;
    }
    .news-details article ul li,
    .news-details article ol li {
        font-size: 15px;
    }
    .news-details article img {
        margin: 24px 0 8px 0;
        border-radius: 8px;
    }
    .news-details article table {
        font-size: 13px;
        margin: 24px 0;
    }
    .news-details article table thead tr th,
    .news-details article table tbody tr td,
    .news-details article table tfoot tr td {
        padding: 12px 16px;
        font-size: 13px;
    }
    .news-details article blockquote {
        margin: 32px 0;
        padding: 24px 20px 24px 32px;
    }
    .news-details article blockquote::before {
        font-size: 60px;
        top: 16px;
        left: 12px;
    }
    .news-details article blockquote p {
        font-size: 20px;
    }
    .news-details__caption {
        font-size: 13px;
        margin: 0 0 24px 0;
    }
}

.news-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 40px;
    margin: auto;
    padding: 72px 116px;
    width: 100%;
    background: #ffffff;
}
.news-section .container {
    position: relative;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
.news-section__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    gap: 40px;
    width: 100%;
    margin-bottom: 40px;
}
.news-section__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.news-section__title .label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2em;
    background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}
.news-section__title h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2em;
    text-align: left;
    color: #111832;
    margin: 0;
}
.news-section__button-group {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
}
.news-section__button-text {
    display: flex;
    align-items: center;
    margin-right: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25em;
    text-align: left;
    color: #00529c;
}
.news-section__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
}
.news-section__content {
    position: relative;
    width: 100%;
}
.news-section__slider-container {
    width: 100%;
}
.news-section__slider-container .slider-wrapper {
    overflow: hidden;
}
.news-section__slider-container .slider-item {
    width: 100%;
    display: flex !important;
    justify-content: center;
}
.news-section__news-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    flex: 1;
    height: auto !important;
    min-height: 515px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-section__item-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-decoration: none;
    color: transparent;
}
.news-section__image {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    border-radius: 12px;
    height: auto !important;
}
.news-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-section__news-item:hover .news-section__image img {
    transform: scale(1.05);
}
.news-section__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    flex: 1;
    min-height: 262px;
    padding: 24px 0 0 0 !important;
    background: #ffffff;
    gap: 12px;
}
@media (max-width: 767.98px) {
    .news-section__info {
        min-height: 0;
    }
}
.news-section__details {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
}
.news-section__date {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.4em;
    text-align: left;
    color: #45464a;
    margin: 0;
}
.news-section__date span {
    background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.news-section__news-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25em;
    text-align: left;
    color: #111832;
    margin: 0;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    text-align: left;
    color: #45464a;
    margin: 12px 0 0 0;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section__action {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    gap: 16px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}
@media (max-width: 767.98px) {
    .news-section__action {
        display: none !important;
    }
}
.news-section__action-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.366em;
    text-align: left;
    color: #111832;
    transition: color 0.2s ease;
}
.news-section__news-item:hover .news-section__action-text {
    color: #00529c;
}
.news-section__action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #e8eef0;
    border: 1px solid #e8eef0;
    border-radius: 8px;
    color: #111832;
    padding: 8px;
    transition: all 0.2s ease;
}
.news-section__action-icon svg {
    width: 20px;
    height: 20px;
}
.news-section__news-item:hover .news-section__action-icon {
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
    color: #ffffff;
}
.news-section__navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.news-section .slick-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e8eef0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 3;
    position: static !important;
    transform: none !important;
}
.news-section .slick-arrow:before {
    display: none;
}
.news-section .slick-arrow:hover {
    background: #e8eef0;
}
.news-section .slick-arrow.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.news-section .slick-prev,
.news-section .slick-next {
    position: static;
}
.news-section .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    width: fit-content;
    position: static !important;
    bottom: auto;
    list-style: none;
    padding: 0;
}
.news-section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    display: block;
}
.news-section .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: #e8eef0;
    border: none;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    display: block;
}
.news-section .slick-dots li button:before {
    display: none;
}
.news-section .slick-dots li.slick-active button {
    width: 36px;
    border-radius: 499.5px;
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
}

@media (max-width: 1200px) {
    .news-section {
        padding: 72px 60px;
    }
    .news-section__title h2 {
        font-size: 36px;
    }
    .news-section__content {
        gap: 30px;
    }
}
@media (max-width: 1024px) {
    .news-section {
        padding: 60px 40px 50px;
    }
    .news-section__header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .news-section__title h2 {
        font-size: 32px;
        text-align: center;
    }
    .news-section__slider-container .slider-item {
        padding: 0 10px;
    }
    .news-section .slick-arrow {
        display: flex !important;
    }
    .slider-wrapper .slick-dotted.slick-slider {
        margin-bottom: 0 !important;
    }
}
@media (max-width: 768px) {
    .news-section {
        padding: 0px 0px 32px 0px !important;
    }
    .news-section__container {
        gap: 32px;
    }
    .news-section__title h2 {
        font-size: 28px;
    }
    .news-section__news-title {
        font-size: 20px;
    }
    .news-section__description {
        font-size: 13px;
    }
    .news-section__image {
        height: 200px;
    }
    .news-section__navigation-wrapper {
        margin-top: 24px;
    }
}
@media (max-width: 480px) {
    .news-section {
        padding: 32px 12px 24px;
    }
    .news-section__title h2 {
        font-size: 24px;
    }
    .news-section__news-title {
        font-size: 18px;
    }
    .news-section__button-text {
        font-size: 12px;
    }
    .news-section__image {
        height: 180px;
    }
    .news-section__navigation-wrapper {
        margin-top: 20px;
    }
}
/*# sourceMappingURL=news-details.css.map */
