
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    padding: 20px;
}

.policy-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(6px);
}

.policy-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.policy-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
}

@media (max-width: 1000px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

.guidesContainer {
    max-width: 860px;
    margin: 0 auto;
}

.pg-heading {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.pg-sub {
    font-size: 15px;
    color: #5f5e5a;
    margin-bottom: 1.5rem;
}

.pg-seg {
    display: flex;
    background: #f1efe8;
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
    margin-bottom: 1.25rem;
}

.pg-seg-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 24px;
    font-size: 15px;
    font-family: Georgia, serif;
    font-weight: 400;
    color: #888780;
    background: transparent;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.18s;
}

.pg-seg-btn i { font-size: 16px; color: #b4b2a9; transition: color 0.18s; }
.pg-seg-btn:hover { color: #2c2c2a; }

.pg-seg-btn.active {
    background: #fff;
    color: #712b13;
    font-weight: 500;
    border: 0.5px solid #f0997b;
}

.pg-seg-btn.active i { color: #d85a30; }

.pg-body {
    background: #fff;
    border: 0.5px solid #c8c6bc;
    border-radius: 12px;
    overflow: hidden;
}

.pg-embed-bar {
    background: #f1efe8;
    border-bottom: 0.5px solid #d3d1c7;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-embed-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d85a30;
    flex-shrink: 0;
}

.pg-embed-lbl {
    font-size: 13px;
    color: #712b13;
    font-family: Georgia, serif;
    flex: 1;
}

.pg-expand-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-family: Georgia, serif;
    color: #993c1d;
    background: transparent;
    border: 0.5px solid #f0997b;
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    transition: background 0.15s;
}

.pg-expand-btn:hover { background: #faece7; }
.pg-expand-btn i { font-size: 13px; }

.pg-panel { display: none; }
.pg-panel.active { display: block; }

.pg-embed-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 70.7071%;
    overflow: hidden;
}

.pg-embed-wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    padding: 0;
    margin: 0;
}

.pg-credit {
    padding: 10px 20px;
    border-top: 0.5px solid #d3d1c7;
    font-size: 12px;
    color: #888780;
}

.pg-credit a {
    color: #993c1d;
    text-decoration: none;
}

.pg-credit a:hover { text-decoration: underline; }

/* Lightbox */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 25, 20, 0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lb-overlay.open { display: flex; }

.lb-box {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
}

.lb-bar {
    background: #f1efe8;
    border-bottom: 0.5px solid #d3d1c7;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d85a30;
    flex-shrink: 0;
}

.lb-title {
    font-size: 14px;
    color: #712b13;
    font-family: Georgia, serif;
    flex: 1;
}

.lb-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 0.5px solid #f0997b;
    background: transparent;
    color: #993c1d;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.15s;
}

.lb-close:hover { background: #faece7; }

.lb-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 70.7071%;
}

.lb-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

.frame-wrap {
    width: 100%;
    height: 100vh;
    padding-top: 50px;
}

.frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}