/* style/blog-k9cc-promotions-guide.css */

:root {
    --k9cc-primary: #113B7A;
    --k9cc-secondary: #1D5FD1;
    --k9cc-text-main: #F3F8FF;
    --k9cc-text-secondary: #AFC4E8;
    --k9cc-card-bg: #10233F;
    --k9cc-border: #244D84;
    --k9cc-glow: #4FA8FF;
    --k9cc-gold: #F2C14E;
    --k9cc-divider: #1B3357;
    --k9cc-deep-navy: #08162B;
    --k9cc-button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --k9cc-light-bg-text: #333333; /* For light backgrounds */
    --k9cc-dark-bg-text: #ffffff; /* For dark backgrounds */
}

.page-blog-k9cc-promotions-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--k9cc-light-bg-text); /* Default for light body background */
    background-color: #f8f9fa; /* Assuming a light body background from shared.css */
}

.page-blog-k9cc-promotions-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    background-color: var(--k9cc-deep-navy);
}

.page-blog-k9cc-promotions-guide__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-blog-k9cc-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-k9cc-promotions-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly for visual effect, but content is below image */
    padding: 0 20px;
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-promotions-guide__main-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--k9cc-gold);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.page-blog-k9cc-promotions-guide__lead-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 30px;
    color: var(--k9cc-text-secondary);
}

.page-blog-k9cc-promotions-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.page-blog-k9cc-promotions-guide__cta-buttons--center {
    margin-top: 40px;
}

.page-blog-k9cc-promotions-guide__btn-primary,
.page-blog-k9cc-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-k9cc-promotions-guide__btn-primary {
    background: var(--k9cc-button-gradient);
    color: var(--k9cc-dark-bg-text);
    border: 2px solid transparent;
}

.page-blog-k9cc-promotions-guide__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
}

.page-blog-k9cc-promotions-guide__btn-secondary {
    background: none;
    color: var(--k9cc-text-main);
    border: 2px solid var(--k9cc-secondary);
}

.page-blog-k9cc-promotions-guide__btn-secondary:hover {
    background-color: rgba(29, 95, 209, 0.2);
    transform: translateY(-2px);
}

.page-blog-k9cc-promotions-guide__content-section {
    padding: 60px 0;
}

.page-blog-k9cc-promotions-guide__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-k9cc-promotions-guide__light-bg {
    background-color: #ffffff;
    color: var(--k9cc-light-bg-text);
}

.page-blog-k9cc-promotions-guide__dark-bg {
    background-color: var(--k9cc-deep-navy);
    color: var(--k9cc-dark-bg-text);
}

.page-blog-k9cc-promotions-guide__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--k9cc-gold);
}

.page-blog-k9cc-promotions-guide__light-bg .page-blog-k9cc-promotions-guide__section-title {
    color: var(--k9cc-primary);
}

.page-blog-k9cc-promotions-guide__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--k9cc-secondary);
}

.page-blog-k9cc-promotions-guide__dark-bg .page-blog-k9cc-promotions-guide__sub-title {
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-promotions-guide__text-block {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-blog-k9cc-promotions-guide__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 25px 0;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-k9cc-promotions-guide__ordered-list,
.page-blog-k9cc-promotions-guide__unordered-list {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-blog-k9cc-promotions-guide__ordered-list li,
.page-blog-k9cc-promotions-guide__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-blog-k9cc-promotions-guide__faq-section {
    padding: 60px 0;
}

.page-blog-k9cc-promotions-guide__faq-list {
    margin-top: 30px;
}

.page-blog-k9cc-promotions-guide__faq-item {
    background-color: var(--k9cc-card-bg);
    border: 1px solid var(--k9cc-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-promotions-guide__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    list-style: none;
    outline: none;
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-promotions-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-k9cc-promotions-guide__faq-qtext {
    flex-grow: 1;
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-promotions-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--k9cc-gold);
}

.page-blog-k9cc-promotions-guide__faq-item[open] .page-blog-k9cc-promotions-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-k9cc-promotions-guide__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--k9cc-text-secondary);
}

.page-blog-k9cc-promotions-guide__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-k9cc-promotions-guide__hero-content {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .page-blog-k9cc-promotions-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-k9cc-promotions-guide__hero-content {
        margin-top: -60px;
        padding: 0 15px;
    }

    .page-blog-k9cc-promotions-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-k9cc-promotions-guide__lead-text {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }

    .page-blog-k9cc-promotions-guide__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .page-blog-k9cc-promotions-guide__btn-primary,
    .page-blog-k9cc-promotions-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-k9cc-promotions-guide__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-k9cc-promotions-guide__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 25px;
    }

    .page-blog-k9cc-promotions-guide__sub-title {
        font-size: clamp(1.2rem, 4.5vw, 1.7rem);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-k9cc-promotions-guide__text-block,
    .page-blog-k9cc-promotions-guide__ordered-list li,
    .page-blog-k9cc-promotions-guide__unordered-list li {
        font-size: 1rem;
    }

    .page-blog-k9cc-promotions-guide__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-blog-k9cc-promotions-guide__faq-item summary {
        padding: 15px 20px;
        font-size: 1.05rem;
    }

    .page-blog-k9cc-promotions-guide__faq-answer {
        padding: 0 20px 15px;
    }

    .page-blog-k9cc-promotions-guide__hero-section,
    .page-blog-k9cc-promotions-guide__content-section,
    .page-blog-k9cc-promotions-guide__faq-section,
    .page-blog-k9cc-promotions-guide__conclusion-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .page-blog-k9cc-promotions-guide__hero-content {
        margin-top: -40px;
    }
}