/**
 * SEO Content Module CSS
 * URL bazlı sabit metin içerikleri için stil tanımları
 */

.seo-content-module {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border: 1px solid #e8edf5;  
}

.seo-content-container {
    width: 100%;
}

.seo-content-header {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 3px solid #00095B;
}

.seo-content-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #00095B;
    letter-spacing: 0.5px;
}

.seo-content-module h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #00095B;
    letter-spacing: 0.5px;
}
.seo-content-full ul li {
    list-style-type: disc;
    margin-left: 15px;
    line-height: 30px;
}
.seo-content-summary p,
.seo-content-full p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 16px 0;
    text-align: justify;
}

.seo-content-summary p:last-of-type,
.seo-content-full p:last-of-type {
    margin-bottom: 20px;
}

.seo-content-toggle-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #00095B 0%, #1a0f8c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 9, 91, 0.2);
    margin-top: 8px;
}

.seo-content-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 9, 91, 0.3);
    background: linear-gradient(135deg, #1a0f8c 0%, #00095B 100%);
}

.seo-content-toggle-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 9, 91, 0.2);
}

.seo-content-toggle-btn:focus-visible {
    outline: 2px solid #00095B;
    outline-offset: 3px;
}

/* noscript içerik */
.seo-content-noscript {
    padding: 24px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 20px;
}

.seo-content-noscript h2 {
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    color: #00095B;
}

.seo-content-noscript p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 14px 0;
    text-align: justify;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
    .seo-content-module {
        padding: 24px;
        margin-top:30px;        
    }

    .seo-content-header h2 {
        font-size: 19px;
    }

    .seo-content-summary p,
    .seo-content-full p {
        font-size: 14px;
    }

    .seo-content-toggle-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
    .seo-content-module {
        padding: 16px;
        margin-top: 20px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }

    .seo-content-header {
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom-width: 2px;
    }

    .seo-content-header h2 {
        font-size: 17px;
    }

    .seo-content-summary p,
    .seo-content-full p {
        font-size: 13px;
        line-height: 1.7;
    }

    .seo-content-toggle-btn {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%; 
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .seo-content-module {
        padding: 12px;
        margin-top: 16px;
    }

    .seo-content-header h2 {
        font-size: 15px;
    }

    .seo-content-summary p,
    .seo-content-full p {
        font-size: 12px;
    }

    .seo-content-toggle-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    .seo-content-module h3 {
        font-size: 13px !important;
        line-height: 18px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .seo-content-toggle-btn {
        transition: none !important;
    }
}

/* ===== PRINT ===== */
@media print {
    .seo-content-toggle-btn {
        display: none;
    }

    .seo-content-full {
        display: block !important;
    }

    .seo-content-summary {
        display: none !important;
    }

    .seo-content-module {
        box-shadow: none;
        border: 1px solid #000;
        break-inside: avoid;
    }
}
