/**
 * Dreseo Policy Page Styles
 * プライバシーポリシー・AIポリシーなどのポリシー系ページ用CSS
 */

/* =========================
   Policy Page Base
========================= */
.dreseo-policy-page {
    padding: 60px 0 80px;
    min-height: 60vh;
}

.dreseo-policy-page .dreseo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Page Title */
.dreseo-policy-page .dreseo-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1b1f5f;
    text-align: center;
    line-height: 1.4;
}

/* Content Section Override - no animation */
.dreseo-policy-page .dreseo-content-section {
    opacity: 1 !important;
    transform: none !important;
    padding: 0;
}

/* =========================
   Typography
========================= */
.dreseo-policy-page .dreseo-section-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
}

/* H2 - Article headings */
.dreseo-policy-page h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 48px 0 16px;
    padding: 0;
    border: none;
    background: transparent;
    color: #1b1f5f;
    line-height: 1.4;
}

.dreseo-policy-page h2:first-of-type {
    margin-top: 24px;
}

/* Paragraphs */
.dreseo-policy-page p {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.9;
}

/* =========================
   Lists (ol, ul)
========================= */
.dreseo-policy-page ol,
.dreseo-policy-page ul {
    margin: 16px 0 24px;
    padding-left: 0;
    list-style: none;
}

/* Ordered List - numbered */
.dreseo-policy-page ol {
    counter-reset: policy-list;
}

.dreseo-policy-page ol>li {
    counter-increment: policy-list;
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.dreseo-policy-page ol>li::before {
    content: counter(policy-list) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #333; /* align with body text color */
    min-width: 24px;
}

/* Unordered List - bullets */
.dreseo-policy-page ul>li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    line-height: 1.8;
}

.dreseo-policy-page ul>li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: #1b1f5f;
    font-weight: bold;
}

/* Nested lists */
.dreseo-policy-page li ol,
.dreseo-policy-page li ul {
    margin: 8px 0 0;
}

.dreseo-policy-page li li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Strong text */
.dreseo-policy-page strong {
    font-weight: 600;
    color: #111;
}

/* =========================
   Policy Date Footer
========================= */
.dreseo-policy-date {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .dreseo-policy-page {
        padding: 40px 0 60px;
    }

    .dreseo-policy-page .dreseo-section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .dreseo-policy-page h2 {
        font-size: 1.1rem;
        margin: 36px 0 12px;
        padding: 10px 0 10px 12px;
    }

    .dreseo-policy-page p,
    .dreseo-policy-page li {
        font-size: 0.95rem;
    }

    .dreseo-policy-page ol>li {
        padding-left: 28px;
    }
}
