/* ==============================================
   COSIONT HEART SRL — GDPR / Privacy Policy Styles
   ============================================== */

/* --- Legal Content Sections --- */
.cst-legal-section {
    margin-bottom: 4rem;
}

/* --- Section Numbering --- */
.cst-section-number {
    color: var(--cst-gold);
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

/* --- Content Cards --- */
.cst-legal-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--cst-border);
    color: var(--cst-text-secondary);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* --- Rights Grid Cards --- */
.cst-right-card {
    border: 1px solid var(--cst-border);
    border-radius: 0.5rem;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s;
}
.cst-right-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
}
.cst-right-card i {
    color: var(--cst-gold);
    margin-bottom: 0.5rem;
}
.cst-right-card h4 {
    color: var(--cst-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.cst-right-card p {
    color: var(--cst-text-dim);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* --- Contact Info Block --- */
.cst-gdpr-contact {
    padding: 1.5rem;
    background: var(--cst-cream);
    border-radius: 0.5rem;
    border: 1px solid var(--cst-border);
}
.cst-gdpr-contact a {
    color: var(--cst-dark);
    font-weight: 500;
    transition: color 0.3s;
}
.cst-gdpr-contact a:hover {
    color: var(--cst-gold);
}

/* --- Custom List Markers --- */
.cst-legal-card ul {
    list-style: disc;
    padding-left: 1.25rem;
}
.cst-legal-card ul li::marker {
    color: var(--cst-gold);
}
