
#tin-tuc .container {
    max-width: 1420px;
}

#tin-tuc .container .row:first-child {
    justify-content: space-around;
}


.news-section {
    padding: 60px 0;
}

.news-section .col-md-8 {
    flex: 0 0 auto;
    width: 62.666667%;
}

.news-content-left {
    margin-right: 30px;
}

    .news-content-left img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .news-content-title {
        text-transform: uppercase;
        padding: 15px 30px 8px 30px;
        color: #fff;
        font-size: 23px;
        display: block;
        font-weight: 800;
        background: #f06e32;
        border-radius: 15px;
        margin-bottom: 30px;
    }

.list-news {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    margin-left: 0px;
    background-color: #fef4f1;
    border-radius: 18px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.news-item-content {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.date-and-category {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.news-full-date {
    font-size: 12px;
    color: #fff;
    padding: 5px 10px;
    background: #005f69;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
}

.news-category {
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.category-link {
    font-size: 14px;
    text-decoration: none;
    color: #f06e32;
    font-weight: 600;
}

.news-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title-link {
    color: #1f305a;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news-title-link:hover {
    color: #f06e32;
}

.news-sub-title {
    font-size: 14px;
    color: rgb(51, 51, 51);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.news-watch-more-btn {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
    position: relative;
    overflow: hidden;
}

.news-watch-more-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    align-items: center;
    transition: all 0.3s ease;
    background: #1f305a;
    padding: 11px 30px;
    border-radius: 85px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.news-watch-more-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-watch-more-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f06e32;
    transition: all 0.4s ease;
    z-index: -1;
}

.news-watch-more-link:hover::before {
    left: 0;
}

.news-watch-more-link:hover i {
    transform: translateX(3px);
}

.news-item-thumbnail {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

    .news-item-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@media (min-width: 1024px) {
    .news-item-thumbnail img {
        min-height: 320px;
        max-height: 320px;
    }
}

.news-item-thumbnail .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 122, 198, 0.65);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 15px;
}

.news-item:hover .news-item-thumbnail .overlay {
    opacity: 0.5;
    cursor: pointer;
}


.news-content-right {
    padding: 0 15px;
    border-radius: 18px;
}

.wp-right-container {
    background: rgb(0, 95, 105);
    padding: 15px;
    border-radius: 8px;
    
}

.right-slider-container {
    /* position: relative; */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* margin-top: 20px;
    margin-bottom: 15px; */
    overflow: hidden;
    border: 1px solid #f0f0f0;
    padding: 20px;
    height: 1000px;
    overflow-y: scroll;
}

.right-slider-container::-webkit-scrollbar {
    width: 5px;
}

.right-slider-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 12px;
}
.right-slider-container::-webkit-scrollbar-thumb:hover {
    background: #aaa;
    border-radius: 12px;
}
.right-slider-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 12px;
}
.right-slider-container::-webkit-scrollbar-track:hover {
    background: #e0e0e0;
    border-radius: 12px;
}

.search-box {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding-left: 0;
}

.search-box input{
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 10px;
}

.search-box input:focus{
    border: 1px solid var(--accent-color);
    outline: none; 
}

.search-box button {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    font-size: 21px;
    background-color: var(--accent-color);
    color: var(--light-color);
    cursor: pointer;
}

.right-slider-container h3 {
    color: var(--accent-color);
    font-size: 20px;
}

.right-slider-container ul.most-viewed-news {
    margin-bottom: 30px;
    padding: 0;
}
.right-slider-container ul.most-viewed-news li  {
    list-style: none;
    margin-bottom: 10px;
    text-align: justify;
}

.right-slider-container ul.most-viewed-news li a {
    font-size: 14px;
    color: rgb(51, 51, 51);
    line-height: 1.5;
    text-decoration: none;
}

.right-slider-container ul.most-viewed-news li:hover a {
    color: var(--accent-color);
    text-decoration: underline;
}

.right-slider-container ul.sdg-news-text {
    margin-bottom: 30px;
    padding: 0;
}

.right-slider-container ul.sdg-news-text li  {
    list-style: none;
    margin-bottom: 10px;
    text-align: justify;
}
.right-slider-container ul.sdg-news-text li a {
    font-size: 14px;
    color: rgb(51, 51, 51);
    line-height: 1.5;
    text-decoration: none;
}

.right-slider-container ul.sdg-news-text li:hover a {
    color: var(--accent-color);
    text-decoration: underline;
}

.right-slider-container .headline {
    font-size: 26px;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
    padding: 40px 30px;
}

.right-slider-container .seperator {
    width: 60px;
    height: 3px;
    background-color: #db3f34;
    margin: 10px auto 15px;
}

.right-slider-item .description {
    font-size: 16px;
    color: #6f6f6f;
    margin: 18px;
    line-height: 1.4;
    padding: 0 20px;
}

.right-slider-item .image img {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
}

.right-slider-container .give-btn {
    display: block;
    width: 66%;
    background: #ed352f;
    color: white;
    border: none;
    padding: 20px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 50px;
}

.right-slider-container .give-btn:hover {
    background-color: #c63228;
}

.right-slider-container .give-btn i {
    margin-left: 5px;
}

/* Form fields styling */
.form-group {
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem 0 0 0.25rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0 0.25rem 0.25rem 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.login-link {
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #e23d36;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.completion-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.sub-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Slider dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: #777;
}

/* Secure notice inside slider item */
.right-slider-item .secure-notice {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.right-slider-item .secure-notice i {
    color: #888;
    margin-right: 5px;
    font-size: 10px;
}

/* Styling for navigation controls */
.slick-prev.right-prev-slider,
.slick-next.right-next-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #eee;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-prev.right-prev-slider {
    left: 5px;
}

.slick-next.right-next-slider {
    right: 5px;
}

.slick-prev.right-prev-slider:hover,
.slick-next.right-next-slider:hover {
    background: #fff;
    color: #333;
}

/* Styles for form elements in slider */
.give-form-navigator {
    margin-bottom: 20px;
}

.give-form-navigator .back-btn {
    background: none;
    border: none;
    color: #1f305a;
    font-size: 14px;
    cursor: pointer;
    padding: 0 10px 0 0;
}

.give-form-navigator .title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f305a;
}

.give-section {
    margin-bottom: 25px;
}

.give-section .heading {
    font-size: 18px;
    font-weight: 600;
    color: #1f305a;
    margin-bottom: 5px;
}

.give-section .subheading {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.give-donation-amount {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.give-currency-symbol {
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translateY(-50%);
    font-size: 17px;
    font-weight: 500;
    color: #1f305a;
}

.give-text-input {
    padding: 24px 30px 24px 60px;
    border: 1px solid #979797;
    border-radius: 5px;
    font-size: 16px;

}

.give-custom-amount-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Form fields styling */
.form-row {
    margin-bottom: 15px;
    position: relative;
}

.form-row i {
    position: absolute;
    top: 35px;
    left: 10px;
    color: #666;
}

.give-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #1f305a;
}

.give-input {
    width: 100%;
    padding: 10px 10px 10px 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.secure-notice {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.secure-notice i {
    color: #1f305a;
    margin-right: 5px;
}


.sdg-news {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.sdg-news li {
    margin: 0;
}

.sdg-news .category-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

.sdg-news li:hover .category-icon {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}



/* Hiệu ứng chuyển động */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-item-wrapper:nth-child(1) .news-item {
    animation-delay: 0.1s;
}

.news-item-wrapper:nth-child(2) .news-item {
    animation-delay: 0.2s;
}

.news-item-wrapper:nth-child(3) .news-item {
    animation-delay: 0.3s;
}

.news-item-wrapper:nth-child(4) .news-item {
    animation-delay: 0.4s;
}

/* Hiệu ứng touch trên mobile */
.touch-active {
    transform: scale(0.98) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

/* Loading animations */
.news-loading {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.events-loading {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.news-loading *,
.events-loading * {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.wp-btn-watch-more {
    margin-top: 40px;
}

.btn-watch-more {
    background-color: #e7e7e8;
    display: inline-block;
    padding: 5px 20px;
    font-size: 20px;
    text-decoration: none;
    color: #1f305a;
    border-radius: 10px;
}

.btn-watch-more:hover {
    background-color: #d8d8e4;
}

.news-btn-watch-more-sm {
    display: none;
}


/* Responsive Styles */
/* Desktop lớn */
@media (min-width: 1400px) {
    .featured-image {
        height: 450px;
    }
    
    .news-image {
        height: 200px;
    }
}

/* Desktop trung bình */
@media (max-width: 1199px) {
    .featured-image {
        height: 350px;
    }
    
    .news-image {
        height: 160px;
    }

    .right-slider-container .headline {
        font-size: 24px;
        padding: 20px 30px;
    }

    .right-slider-container .give-btn {
        width: 90%;
        padding: 15px;
    }

    .news-content-left {
        margin-right: 5px;
    }

    .search-box input {
        width: 90%;
    }
}


@media (min-width: 575px) and (max-width: 1024px) {
    .news-item {
        position: relative;
        display: block !important;
        overflow: hidden;
        margin-bottom: 30px;
    }
    
    .news-item-thumbnail {
        position: relative;
        width: 100% !important;
        /* height: 250px; */
        margin-bottom: 0;
    }
    
    .news-item-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: 0;
    }
    
    .news-item-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        padding: 15px;
        width: 100% !important;
        background-color: rgba(250, 237, 230, 0.95);
        border-radius: 0 0 15px 15px;
        z-index: 2;
    }
    
    .news-item-content .news-title-link {
        color: #1f2b67;
    }
    
    .news-title {
        font-size: 16px;
    }

    .news-item-content .news-sub-title {
        color: #333;
    }
    
    
    .news-title-link:hover {
        color: #f06e32;
    }
    
    .news-sub-title {
        color: #333;
    }
    
    .news-item.d-flex.flex-row-reverse .news-item-content {
        position: absolute;
        top: 0;
        bottom: 0;
    }
    
    .news-item-thumbnail .overlay {
        opacity: 0;
        background: rgba(0, 0, 0, 0.1);
    }
    
    .news-item:hover .news-item-thumbnail .overlay {
        opacity: 0.5;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .news-item {
        flex-wrap: wrap;
    }
    
    .news-item-content,
    .news-item-thumbnail {
        width: 100% !important;
    }
    
    .news-item.d-flex.flex-row-reverse {
        flex-direction: column-reverse !important;
    }
    
    .news-item-thumbnail img {
        height: 250px;
        margin-bottom: 15px;
    }
    .news-section {
        padding: 50px 0;
    }
    
    .section-title, .achievements-title {
        font-size: 32px !important;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .news-item-wrapper {
        margin-bottom: 20px;
    }
    
    .news-image {
        height: 140px;
    }
    
    /* Điều chỉnh layout cho tablet */
    .col-md-6:nth-child(odd) {
        padding-right: 10px;
    }
    
    .col-md-6:nth-child(even) {
        padding-left: 10px;
    }


    .btn-watch-more {
        font-size: 20px;
    }

    .right-slider-container .headline {
        font-size: 18px;
        padding: 15px;
    }
    .right-slider-container .give-btn {
        width: 90%;
        padding: 10px;
        font-size: 14px;
    }

    .right-slider-item .description {
        font-size: 14px;
        padding: 0 15px;
        margin: 0;
        margin-bottom: 10px;
    }

    .secure-notice {
        font-size: 12px;
    }

    .news-content-title {
        padding: 10px 30px 5px 26px;
        font-size: 32px;
    }

    .search-box input{
        width: 90%;
    }

    .search-box input::placeholder{
        font-size: 14px;
    }

    .right-slider-container h3 {
        font-size: 18px;
    }

    .right-slider-container ul.most-viewed-news li a {
        font-size: 14px;
    }

    .right-slider-container ul.sdg-news-text li a {
        font-size: 14px;
    }


    .right-slider-container {
        padding: 12px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .list-news {
        gap: 20px;
    }

    .wp-btn-watch-more {
        margin-top: 20px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .news-item.d-flex.flex-row-reverse {
        flex-direction: column-reverse !important;
    }
    
    .news-item-content,
    .news-item-thumbnail {
        width: 100% !important;
        max-width: 100%;
    }
    
    .news-item-thumbnail img {
        height: 200px;
        border-radius: 10px;
    }
    .news-section {
        padding: 40px 0;
    }
    
    .section-title, .achievements-title {
        font-size: 28px !important;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 15px;
    }
    
    .title-lastes {
        font-size: 16px;
    }
    
    .featured-title {
        font-size: 18px;
    }
    
    .sdg-featured-news li {
        margin-right: 5px;
    }
    
    .category-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Điều chỉnh layout cho mobile */
    .news-item {
        display: flex;
        flex-direction: row;
        height: auto;
    }
    
    .news-image {
        width: 40%;
        height: 120px;
        flex-shrink: 0;
    }
    
    .news-content {
        width: 60%;
        padding: 10px 12px;
    }
    
    .news-category {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    /* .sdg-news {
        margin-bottom: 8px;
    } */
    
    .sdg-news .category-icon {
        width: 25px;
        height: 25px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .news-title {
        font-size: 14px;
        -webkit-line-clamp: 3;
        max-height: 4.2em;
    }

    .right-slider-container {
        height: 500px;
    }

}

/* Mobile nhỏ */
@media (max-width: 575px) {
    .news-item {
        padding: 12px;
    }
    
    .news-full-date {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .sdg-news .category-icon {
        width: 24px;
        height: 24px;
    }
    
    .news-item-thumbnail img {
        height: 180px;
    }
    
    .news-title {
        font-size: 15px;
    }
    .news-section {
        padding: 30px 0;
    }
    
    .section-title, .achievements-title {
        font-size: 24px !important;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .featured-content {
        padding: 12px;
    }
    
    .title-lastes {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .featured-title {
        font-size: 16px;
    }
    
    .sdg-featured-news {
        margin-bottom: 8px;
    }
    
    .category-icon {
        width: 28px;
        height: 28px;
    }
    
    .news-item-wrapper {
        margin-bottom: 15px;
    }
    
    .sdg-news .category-icon {
        width: 22px;
        height: 22px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .news-title {
        font-size: 13px;
    }

    .btn-watch-more {
        font-size: 18px;
    }
    
    .news-section {
        padding: 40px 10px;
    }

    .news-section .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .news-content-title {
        font-size: 24px;
    }
}

/* Mobile rất nhỏ */
@media (max-width: 480px) {
    .featured-image {
        height: 180px;
    }
    
    .featured-content {
        padding: 10px;
    }
    
    .sdg-featured-news li {
        margin-right: 4px;
    }
    
    .featured-content .category-icon {
        width: 25px;
        height: 25px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: 140px;
    }
    
    .news-content {
        width: 100%;
    }
    
    .news-title {
        -webkit-line-clamp: 2;
        max-height: 2.8em;
    }

    .news-btn-watch-more-sm {
        display: block;
    }

    .news-btn-watch-more-desktop {
        display: none;
    }

}


@media (max-width: 767px) {
    .news-content-right {
        margin-top: 50px;
    }
}

@media (max-width: 425px) {
    .news-item-thumbnail {
        display: none;
    }
    
    .news-item-content {
        border-radius: 15px;
        background-color: #fef7f4;
        padding: 15px;
    }
    
    .news-title {
        font-size: 16px;
        margin-top: 5px;
        -webkit-line-clamp: 3;
    }
    
    .news-sub-title {
        -webkit-line-clamp: 3;
        margin-bottom: 10px;
        font-size: 14px;
    }
}

/* Mobile cực nhỏ */
@media (max-width: 360px) {
    .featured-image {
        height: 160px;
    }
    
    .news-image {
        height: 120px;
    }
    
    .featured-title {
        font-size: 14px;
    }
    
    .category-icon {
        width: 22px;
        height: 22px;
    }
    
    .news-category {
        font-size: 12px;
    }
}

.featured-tag {
    color: rgb(51,51,51);
    font-style: italic;
    text-transform: none;
    font-size: 0.7rem;
    letter-spacing: unset;
    margin: 0;
    margin-top: 3px;
    font-weight: 500;
}