.hero__cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: #f8c34c;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(248,195,76,0.35);
    position: relative;
    z-index: 2;
}
.hero__cta-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(248,195,76,0.45);
}
@media (max-width: 768px) {
    .hero__cta-btn {
        display: block;
        text-align: center;
        margin-top: 20px;
    }
}

.hero__bg img {
    object-position: center !important;
}

.header .icon-menu::before,
.header .icon-menu::after,
.header .icon-menu span {
    background-color: #fff !important;
}

.page__articles {
    padding: 80px 0;
}
.page__articles-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 15px;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}
.article-card {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}
.article-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .article-card__img img {
    transform: scale(1.05);
}
.article-card__title {
    padding: 16px 20px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.show-content iframe {
    z-index: 99;
}
.footer__caption {
    white-space: nowrap;
}
.send-status {
    color: #f8c34c;
    font-weight: 600;
    margin: 10px auto;
    text-align: center;
}