.news-show-page {
    background: #fff8ee;
    padding: 40px 0 80px;
}

.news-container {
    max-width: 850px;
    margin: auto;
}

.news-article {
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.news-date {
    color: #6E5C7B;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.news-title {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 900;
    color: #2d1b12;
    margin-bottom: 28px;
}

.news-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 28px;
}

.news-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.news-content {
    color: #5d534d;
    font-size: 1.08rem;
    line-height: 2;
}

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

.news-content h2,
.news-content h3 {
    color: #2d1b12;
    margin-top: 30px;
}

.share-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-weight: 700;
    margin-bottom: 18px;
    color: #2d1b12;
}

.share-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ece5dc;
    transition: .25s;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.copy-btn {
    border-radius: 999px;
    width: auto;
    padding: 0 18px;
    font-weight: 600;
}

.copy-btn {
    position: relative;
    overflow: hidden;
}

.copy-btn.is-copied {
    color: #000000;
}

.copy-btn span {
    transition: opacity .25s ease;
}

.latest-news {
    margin-top: 70px;
}

.latest-news h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2d1b12;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.latest-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .05);
}

.latest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.latest-card-body {
    padding: 18px;
}

.latest-card-body h3 {
    font-size: 1rem;
    line-height: 1.5;
    color: #2d1b12;
    margin-bottom: 10px;
}

@media(max-width:768px) {
    .news-show-page {
        padding: 20px 0 50px;
    }

    .news-article {
        padding: 11px;
        border-radius: 20px;
    }

    .news-title {
        font-size: 21px;
    }

    .latest-grid {
        grid-template-columns: 1fr;
    }

    .latest-card img {
        height: 220px;
    }
}
