.news {
    max-width: 900px;
    margin: 40px auto;
}
.news-title {
    font-size: 1.8rem;
    font-family: "Dela Gothic One", sans-serif;
    margin-bottom: 20px;
}
.featured-article {
    display: flex;
    overflow: hidden;
    margin-bottom: 40px;
    cursor: pointer;
}
.featured-article img {
    border-radius: 16px;
    width: 50%;
    object-fit: cover;
}
.featured-content {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.featured-label {
    color: var(--theme-color-text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.featured-heading {
    font-size: 26px;
    font-family: "Dela Gothic One", sans-serif;
    margin-bottom: 10px;
}
.featured-desc {
    color: var(--theme-color-text-secondary);
}
.featured-date {
    color: var(--theme-color-text-secondary);
    font-size: 0.9rem;
}
.featured-article:hover img {
    transition: opacity .5s ease-in-out, filter .2s ease-in-out, scale .05s ease-in-out, outline .2s ease-in-out;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    transition-property: all;
    filter: brightness(0.95);
}
.featured-article:hover h3 {
    text-decoration: underline;
}
.more-title {
    font-size: 1.2rem;
    font-family: "Dela Gothic One", sans-serif;
    margin-bottom: 20px;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(290px, 1fr));
    gap: 24px;
}
.article {
    padding-bottom: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.article img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    border-radius: 16px;
}
.article h4 {
    font-size: 1rem;
    font-family: "Dela Gothic One", sans-serif;
    line-height: 18px;
    margin: 12px 0 8px;
}
.article p {
    font-size: 16px;
    color: var(--theme-color-text-secondary);
    margin: 0 0 12px;
    line-height: 22px;
    flex: 1;
}
.article span {
    color: var(--theme-color-text-secondary);
    font-size: 0.85rem;
    margin: 0 0;
}
@media (max-width: 700px) {
    .featured-article {
        flex-direction: column;
    }
    .featured-article img {
        width: 100%;
        height: 220px;
    }
}
.article:hover img {
    transition: opacity .5s ease-in-out, filter .2s ease-in-out, scale .05s ease-in-out, outline .2s ease-in-out;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    transition-property: all;
    filter: brightness(0.95);
}
.article:hover h4 {
    text-decoration: underline;
}
.news-title--hover:hover {
    cursor: pointer;
    text-decoration: underline;
}
.latest-news {
    max-width: var(--layout-max-width);
    margin: 60px auto 20px auto;
    text-align: center;
}
.latest-title {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 36px;
    margin-bottom: 30px;
}
.news-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-bottom: 40px;
}
.news-card {
    overflow: hidden;
    width: 400px;
    text-align: left;
}
.news-card img {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    object-fit: cover;
    pointer-events: none;
}
.news-content {
    padding: 0;
}
.news-content h3 {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 22px;
}
.news-content p {
    color: var(--theme-color-text-secondary);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.news-content span {
    font-size: 14px;
    color: var(--theme-color-text-secondary);
}
.view-all {
    display: flex;
    justify-content: center;
}
.news-card:hover .news-content h3 {
    text-decoration: underline;
}
@media (max-width: 859px) {
    .news {
        padding: 0 24px;
    }
    .featured-content {
        padding: 0;
        margin-top: 12px;
    }
}
.share-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--theme-color-button-secondary-shadow);
    background: var(--theme-color-button-secondary);
    color: var(--theme-color-text-primary) !important;
    transition: opacity .2s ease-in-out;
}
.share-btn:hover {
    opacity: 0.7 !important;
}
.share-btn svg {
    fill: none;
}
.copy-btn {
    position: relative;
    overflow: hidden;
}
.copy-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}