/* style/blog-how-to-securely-access-ysb66.css */

/* Custom Colors */
:root {
    --ysb66-primary-color: #11A84E;
    --ysb66-secondary-color: #22C768;
    --ysb66-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --ysb66-card-bg: #11271B;
    --ysb66-background: #08160F;
    --ysb66-text-main: #F2FFF6;
    --ysb66-text-secondary: #A7D9B8;
    --ysb66-border-color: #2E7A4E;
    --ysb66-glow-color: #57E38D;
    --ysb66-gold-color: #F2C14E;
    --ysb66-divider-color: #1E3A2A;
    --ysb66-deep-green: #0A4B2C;
}

.page-blog-how-to-securely-access-ysb66 {
    background-color: var(--ysb66-background);
    color: var(--ysb66-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-how-to-securely-access-ysb66__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background-color: var(--ysb66-background);
}

.page-blog-how-to-securely-access-ysb66__hero-image-container {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-how-to-securely-access-ysb66__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-how-to-securely-access-ysb66__hero-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
    color: var(--ysb66-text-main);
}

.page-blog-how-to-securely-access-ysb66__hero-title {
    font-size: clamp(2em, 3.5vw, 3em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--ysb66-glow-color);
    letter-spacing: 0.05em;
}

.page-blog-how-to-securely-access-ysb66__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--ysb66-text-secondary);
}

.page-blog-how-to-securely-access-ysb66__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--ysb66-deep-green);
    box-sizing: border-box;
}

.page-blog-how-to-securely-access-ysb66__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px; /* Adjust max-width for video */
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.page-blog-how-to-securely-access-ysb66__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-blog-how-to-securely-access-ysb66__video-text-content {
    max-width: 900px;
    text-align: center;
    color: var(--ysb66-text-main);
}

.page-blog-how-to-securely-access-ysb66__video-title {
    font-size: clamp(1.8em, 2.5vw, 2.5em);
    color: var(--ysb66-gold-color);
    margin-bottom: 15px;
}

.page-blog-how-to-securely-access-ysb66__video-description {
    font-size: 1em;
    color: var(--ysb66-text-secondary);
    margin-bottom: 25px;
}

.page-blog-how-to-securely-access-ysb66__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--ysb66-background);
    color: var(--ysb66-text-main);
}

.page-blog-how-to-securely-access-ysb66__article {
    max-width: 800px;
    margin: 0 auto;
}

.page-blog-how-to-securely-access-ysb66__section-title {
    font-size: clamp(2em, 3vw, 2.8em);
    font-weight: 700;
    color: var(--ysb66-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-blog-how-to-securely-access-ysb66__sub-title {
    font-size: clamp(1.5em, 2.2vw, 2em);
    font-weight: 600;
    color: var(--ysb66-gold-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-how-to-securely-access-ysb66__text-block {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--ysb66-text-main);
}

.page-blog-how-to-securely-access-ysb66__list,
.page-blog-how-to-securely-access-ysb66__ordered-list {
    margin-bottom: 20px;
    padding-left: 25px;
    color: var(--ysb66-text-main);
}

.page-blog-how-to-securely-access-ysb66__list-item {
    margin-bottom: 10px;
    color: var(--ysb66-text-secondary);
}

.page-blog-how-to-securely-access-ysb66__strong {
    color: var(--ysb66-gold-color);
}

.page-blog-how-to-securely-access-ysb66__highlight {
    background-color: rgba(87, 227, 141, 0.2);
    padding: 2px 5px;
    border-radius: 3px;
    color: var(--ysb66-glow-color);
}

.page-blog-how-to-securely-access-ysb66__image-wrapper {
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-access-ysb66__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-blog-how-to-securely-access-ysb66__btn-primary,
.page-blog-how-to-securely-access-ysb66__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-how-to-securely-access-ysb66__btn-primary {
    background: var(--ysb66-btn-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-how-to-securely-access-ysb66__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-how-to-securely-access-ysb66__btn-secondary {
    background: var(--ysb66-card-bg);
    color: var(--ysb66-glow-color);
    border: 2px solid var(--ysb66-primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-securely-access-ysb66__btn-secondary:hover {
    background: var(--ysb66-primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-how-to-securely-access-ysb66__cta-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-how-to-securely-access-ysb66__cta-container--final {
    margin-top: 50px;
    margin-bottom: 60px;
}

/* FAQ Section */
.page-blog-how-to-securely-access-ysb66__faq-list {
    margin-top: 30px;
    border-top: 1px solid var(--ysb66-divider-color);
}

.page-blog-how-to-securely-access-ysb66__faq-item {
    border-bottom: 1px solid var(--ysb66-divider-color);
    padding: 15px 0;
    color: var(--ysb66-text-main);
}

.page-blog-how-to-securely-access-ysb66__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--ysb66-glow-color);
    list-style: none; /* For details summary */
}

.page-blog-how-to-securely-access-ysb66__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-securely-access-ysb66__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-blog-how-to-securely-access-ysb66__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-how-to-securely-access-ysb66__faq-item[open] .page-blog-how-to-securely-access-ysb66__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-how-to-securely-access-ysb66__faq-answer {
    padding-top: 10px;
    padding-left: 20px;
    font-size: 0.95em;
    color: var(--ysb66-text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-securely-access-ysb66__hero-title {
        font-size: clamp(2.2em, 4vw, 3.5em);
    }
    .page-blog-how-to-securely-access-ysb66__section-title {
        font-size: clamp(1.8em, 3.5vw, 2.5em);
    }
    .page-blog-how-to-securely-access-ysb66__sub-title {
        font-size: clamp(1.3em, 2.5vw, 1.8em);
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-securely-access-ysb66 {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-securely-access-ysb66__hero-content,
    .page-blog-how-to-securely-access-ysb66__video-text-content {
        padding: 0 15px;
    }

    .page-blog-how-to-securely-access-ysb66__content-area {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-how-to-securely-access-ysb66__hero-image,
    .page-blog-how-to-securely-access-ysb66__image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-how-to-securely-access-ysb66__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
        margin: 20px 0;
    }

    .page-blog-how-to-securely-access-ysb66__video-section {
        padding: 20px 15px;
        padding-top: 10px !important; /* body handles header offset */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-how-to-securely-access-ysb66__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-bottom: 56.25% !important; /* Ensure aspect ratio */
    }
    
    .page-blog-how-to-securely-access-ysb66__video {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
    }

    .page-blog-how-to-securely-access-ysb66__btn-primary,
    .page-blog-how-to-securely-access-ysb66__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 15px;
    }

    .page-blog-how-to-securely-access-ysb66__cta-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-how-to-securely-access-ysb66__list,
    .page-blog-how-to-securely-access-ysb66__ordered-list {
        padding-left: 20px;
    }

    .page-blog-how-to-securely-access-ysb66__faq-answer {
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-securely-access-ysb66__hero-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-blog-how-to-securely-access-ysb66__section-title {
        font-size: clamp(1.6em, 4.5vw, 2em);
    }
    .page-blog-how-to-securely-access-ysb66__sub-title {
        font-size: clamp(1.2em, 3.5vw, 1.5em);
    }
    .page-blog-how-to-securely-access-ysb66__hero-description {
        font-size: 0.95em;
    }
    .page-blog-how-to-securely-access-ysb66__btn-primary,
    .page-blog-how-to-securely-access-ysb66__btn-secondary {
        font-size: 1em;
        padding: 12px 20px;
    }
}