/* style/news-center-kkwin-official-announcement.css */

:root {
    --kkwin-primary: #0A246A;
    --kkwin-secondary: #FFD700;
    --kkwin-text-dark: #333333;
    --kkwin-text-light: #ffffff;
    --kkwin-background-light: #f4f7f6;
    --kkwin-border-color: #e0e0e0;
}

.page-news-center-kkwin-official-announcement {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--kkwin-text-dark);
    background-color: var(--kkwin-background-light);
}

.page-news-center-kkwin-official-announcement__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news-center-kkwin-official-announcement__hero-section {
    background: linear-gradient(135deg, var(--kkwin-primary) 0%, #3a5c9f 100%); /* Slightly lighter blue for gradient */
    color: var(--kkwin-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-center-kkwin-official-announcement__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-news-center-kkwin-official-announcement__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--kkwin-secondary);
}

.page-news-center-kkwin-official-announcement__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-news-center-kkwin-official-announcement__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-news-center-kkwin-official-announcement__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-news-center-kkwin-official-announcement__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-news-center-kkwin-official-announcement__btn--primary {
    background-color: var(--kkwin-secondary);
    color: var(--kkwin-primary);
}

.page-news-center-kkwin-official-announcement__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: var(--kkwin-primary);
}

.page-news-center-kkwin-official-announcement__btn--secondary {
    background-color: transparent;
    color: var(--kkwin-secondary);
    border: 2px solid var(--kkwin-secondary);
}

.page-news-center-kkwin-official-announcement__btn--secondary:hover {
    background-color: var(--kkwin-secondary);
    color: var(--kkwin-primary);
}

.page-news-center-kkwin-official-announcement__section-title {
    font-size: 2.5em;
    color: var(--kkwin-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-news-center-kkwin-official-announcement__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--kkwin-secondary);
    border-radius: 2px;
}

.page-news-center-kkwin-official-announcement__announcements-overview,
.page-news-center-kkwin-official-announcement__latest-announcements,
.page-news-center-kkwin-official-announcement__platform-updates,
.page-news-center-kkwin-official-announcement__exclusive-promotions,
.page-news-center-kkwin-official-announcement__responsible-gaming,
.page-news-center-kkwin-official-announcement__faq,
.page-news-center-kkwin-official-announcement__cta-section {
    padding: 60px 0;
    background-color: var(--kkwin-text-light);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-news-center-kkwin-official-announcement__announcements-overview .page-news-center-kkwin-official-announcement__text-block,
.page-news-center-kkwin-official-announcement__platform-updates .page-news-center-kkwin-official-announcement__text-block,
.page-news-center-kkwin-official-announcement__exclusive-promotions .page-news-center-kkwin-official-announcement__text-block,
.page-news-center-kkwin-official-announcement__responsible-gaming .page-news-center-kkwin-official-announcement__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-news-center-kkwin-official-announcement__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-news-center-kkwin-official-announcement__news-card {
    background-color: var(--kkwin-text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-center-kkwin-official-announcement__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-news-center-kkwin-official-announcement__news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-news-center-kkwin-official-announcement__news-card-content {
    padding: 20px;
}

.page-news-center-kkwin-official-announcement__news-card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--kkwin-primary);
}

.page-news-center-kkwin-official-announcement__news-card-title a {
    text-decoration: none;
    color: var(--kkwin-primary);
    transition: color 0.3s ease;
}

.page-news-center-kkwin-official-announcement__news-card-title a:hover {
    color: var(--kkwin-secondary);
}

.page-news-center-kkwin-official-announcement__news-card-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.page-news-center-kkwin-official-announcement__news-card-excerpt {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-news-center-kkwin-official-announcement__view-all {
    text-align: center;
    margin-top: 50px;
}

.page-news-center-kkwin-official-announcement__full-width-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-center-kkwin-official-announcement__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-news-center-kkwin-official-announcement__promo-card {
    background-color: var(--kkwin-primary);
    color: var(--kkwin-text-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-news-center-kkwin-official-announcement__promo-title {
    font-size: 1.8em;
    color: var(--kkwin-secondary);
    margin-bottom: 15px;
}

.page-news-center-kkwin-official-announcement__promo-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.9;
    flex-grow: 1;
}

.page-news-center-kkwin-official-announcement__promo-card .page-news-center-kkwin-official-announcement__btn--primary {
    background-color: var(--kkwin-secondary);
    color: var(--kkwin-primary);
    align-self: center;
}

.page-news-center-kkwin-official-announcement__promo-card .page-news-center-kkwin-official-announcement__btn--primary:hover {
    background-color: #e6c200;
}

.page-news-center-kkwin-official-announcement__faq-item {
    background-color: var(--kkwin-text-light);
    border: 1px solid var(--kkwin-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-news-center-kkwin-official-announcement__faq-question {
    font-size: 1.2em;
    color: var(--kkwin-primary);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-news-center-kkwin-official-announcement__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-news-center-kkwin-official-announcement__faq-answer a {
    color: var(--kkwin-primary);
    text-decoration: underline;
}

.page-news-center-kkwin-official-announcement__faq-answer a:hover {
    color: var(--kkwin-secondary);
}

.page-news-center-kkwin-official-announcement__cta-section {
    text-align: center;
    background-color: var(--kkwin-primary);
    color: var(--kkwin-text-light);
    padding: 80px 0;
    border-radius: 8px;
}

.page-news-center-kkwin-official-announcement__cta-section .page-news-center-kkwin-official-announcement__section-title {
    color: var(--kkwin-secondary);
}

.page-news-center-kkwin-official-announcement__cta-section .page-news-center-kkwin-official-announcement__section-title::after {
    background-color: var(--kkwin-text-light);
}

.page-news-center-kkwin-official-announcement__cta-section .page-news-center-kkwin-official-announcement__text-block {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-center-kkwin-official-announcement__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-center-kkwin-official-announcement__hero-title {
        font-size: 2.5em;
    }
    .page-news-center-kkwin-official-announcement__hero-subtitle {
        font-size: 1.2em;
    }
    .page-news-center-kkwin-official-announcement__section-title {
        font-size: 2em;
    }
    .page-news-center-kkwin-official-announcement__news-grid,
    .page-news-center-kkwin-official-announcement__promotion-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news-center-kkwin-official-announcement__hero-section {
        padding: 60px 0;
    }
    .page-news-center-kkwin-official-announcement__hero-title {
        font-size: 2em;
    }
    .page-news-center-kkwin-official-announcement__hero-subtitle {
        font-size: 1em;
    }
    .page-news-center-kkwin-official-announcement__announcements-overview,
    .page-news-center-kkwin-official-announcement__latest-announcements,
    .page-news-center-kkwin-official-announcement__platform-updates,
    .page-news-center-kkwin-official-announcement__exclusive-promotions,
    .page-news-center-kkwin-official-announcement__responsible-gaming,
    .page-news-center-kkwin-official-announcement__faq,
    .page-news-center-kkwin-official-announcement__cta-section {
        padding: 40px 0;
    }
    .page-news-center-kkwin-official-announcement__section-title {
        font-size: 1.8em;
    }
    .page-news-center-kkwin-official-announcement__news-grid,
    .page-news-center-kkwin-official-announcement__promotion-cards {
        grid-template-columns: 1fr;
    }
    .page-news-center-kkwin-official-announcement__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-news-center-kkwin-official-announcement__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-news-center-kkwin-official-announcement__hero-title {
        font-size: 1.8em;
    }
    .page-news-center-kkwin-official-announcement__hero-subtitle {
        font-size: 0.9em;
    }
    .page-news-center-kkwin-official-announcement__section-title {
        font-size: 1.5em;
    }
    .page-news-center-kkwin-official-announcement__btn {
        margin: 8px 0;
    }
    .page-news-center-kkwin-official-announcement__news-card-title {
        font-size: 1.2em;
    }
    .page-news-center-kkwin-official-announcement__promo-title {
        font-size: 1.5em;
    }
}