/* =========================================
   CONTENT-BEREICH – HEIMATVEREIN DRENSTEINFURT
   Ruhig, edel, gut lesbar
========================================= */

.content {
    max-width: 1040px;
    margin: 3rem auto;
    padding: 3rem 2.5rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Grundtypografie im Content */
.content p {
    line-height: 1.65;
    margin-bottom: 1.2rem;
    color: #222;
}

/* Listen im Fließtext */
.content ul,
.content ol {
    margin: 0 0 1.2rem 1.4rem;
    line-height: 1.6;
}

/* =========================================
   GRID-ABSCHNITTE
========================================= */

.content-section {
    margin: 3rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(24px, 4vw, 48px);
}

/* Handy: 1 Spalte (Fallback, falls auto-fit nicht greift) */
@media (max-width: 700px) {
    .content-section {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

/* =========================================
   ÜBERSCHRIFTEN
========================================= */

/* H1 – Haupttitel, edel mit Goldverlauf */
.content h1 {
    font-size: 2.0rem;
    font-weight: 600;
    color: #17175E;              /* Vereins-Blau */
    margin: 2.6rem 0 1.6rem;     /* harmonische Abstände */
    padding: 12px 16px;          /* ruhige Innenabstände */
    background: #fffdf0;         /* sehr dezentes Gelb */
    border-left: 5px solid #d4af37; /* Goldstrich links */
    border-radius: 8px;          /* wie deine Content-Box */
    line-height: 1.3;
}



/* H2 – Abschnittstitel, ruhig mit Goldkante */
.content h2 {
    margin: 2.5rem 0 1rem;
    padding: 6px 14px;
    font-size: 1.4rem;
    color: #17175E;
    background: #f7f7f7;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

/* H3 – Untertitel, nah am Text */
.content h3 {
    margin: 1.8rem 0 0.6rem;
    font-size: 1.2rem;
    color: #17175E;
    font-weight: 600;
}

/* =========================================
   CONTENT-ITEMS & BILDER
========================================= */

.content-item {
    padding-bottom: 20px;
}

.content-item img {
    width: 100%;
    margin: 0.2rem auto;
    display: block;
}



/* =========================================
   LINKS IM CONTENT
========================================= */

.content a {
    color: #A00000;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
}

/* Goldene Unterstreichung beim Hover */
.content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f7e27c, #d4af37);
    transition: width 0.25s ease;
}

.content a:hover::after {
    width: 100%;
}

.content a:focus {
    outline:
    px solid #d4af37;
    outline-offset: 3px;
    border-radius: 4px;
}



/* =========================================
   ICON-LIST – Vereinsstil (Gold + Blau)
   Perfekt abgestimmt auf .content
========================================= */

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

/* Listenelement */
.icon-list li {
    background: #fffdf5; /* warmes Weiß wie Content-Box */
    border-left: 4px solid #d4af37; /* Goldkante */
    margin: 12px 0;
    padding: 14px 20px 14px 60px; /* Platz für Icon */
    border-radius: 10px; /* exakt wie .content */
    position: relative;
    transition: background 0.25s ease, transform 0.2s ease;
}

/* Icon links – flexibel austauschbar */
.icon-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hover */
.icon-list li:hover {
    background: #fff8d9; /* helles Goldweiß */
    transform: translateX(4px);
    cursor: pointer;
}


/* =========================================
           GOLD-LISTE – GLOBAL
========================================= */

.gold-list {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 2.2rem 0; /* harmonische Abstände */
}

.gold-list li {
    display: block;
    background: #fffdf0;            /* leichtes Gelb */
    border-left: 4px solid #d4af37; /* Goldstrich links */
    color: #333;                    /* ruhige Schriftfarbe */
    padding: 10px 14px;             /* klare, ruhige Box */
    border-radius: 8px;             /* wie .content */
    margin: 10px 0;                 /* Abstand zwischen Elementen */
}

main content{
    border: display:none;
}

