/* Broker Selection Ratgeber Specific Styles */

#sicherheit-regulierung .container,
#kosten-gebuehren .container h2,
#kosten-gebuehren .container p,
#kosten-gebuehren .container.costs-breakdown {
    max-width: 800px;
    margin: 0 auto;
}

#produktauswahl .container {
    max-width: 600px;
    margin: 0 auto;
}

/* --- General Section Styling --- */
.guide-section h2 {
    margin-bottom: 2rem;
}

/* --- Criteria Overview --- */
.criteria-overview {
    margin-top: 2rem;
}

.criteria-priority {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.criteria-priority h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.criteria-priority:nth-of-type(1) h3 {
    color: #dc2626;
} /* Critical */
.criteria-priority:nth-of-type(2) h3 {
    color: #f59e0b;
} /* Important */
.criteria-priority:nth-of-type(3) h3 {
    color: #10b981;
} /* Nice-to-have */

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.criteria-item:hover {
    background: #f9fafb;
    transform: translateX(4px);
}

.criteria-icon {
    font-size: 1.125rem;
    min-width: 1.5rem;
}

.criteria-item span:last-child {
    color: #4b5563;
    line-height: 1.5;
}

/* --- Security Grid --- */
.security-grid {
    margin-top: 2rem;
}

.security-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.security-card h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
}

.regulator-info,
.deposit-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.security-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.security-features li {
    padding: 0.5rem 0;
}

/* --- Costs Breakdown --- */
.costs-breakdown {
    margin-top: 2rem;
}

.cost-category {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.cost-range {
    padding: 1rem;
    background: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.example {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: fit-content;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.example strong {
    margin: auto;
}

/* --- Products Grid --- */
.products-grid {
    margin-top: 2rem;
}
.product-category {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.market-coverage,
.etf-coverage {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.additional-products ul {
    list-style: none;
    padding-left: 0;
}
.additional-products li {
    padding: 0.5rem 0;
}

/* --- Platform Features --- */
.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin: 2rem auto 0;
}

.feature-category {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}
.feature-category h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.feature-list li:last-child {
    border-bottom: none;
}

.platform-comparison {
    margin-top: 3rem;
}
.platform-comparison .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
    justify-content: center;
    gap: 2rem;
}
.comparison-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}
.comparison-card h4 {
    margin-top: 0;
}
.pros-cons {
    margin-top: 1rem;
}
.pros h5,
.cons h5 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.pros h5 {
    color: #10b981;
}
.cons h5 {
    color: #ef4444;
}
.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.pros li,
.cons li {
    padding: 0.25rem 0;
}

/* --- Support Channels --- */
.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin: 2rem auto 0;
}
.support-channel {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}
.availability,
.response-times {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.education-features ul {
    list-style: none;
    padding: 0;
}
.education-features li {
    padding: 0.5rem 0;
}

/* --- Checklist --- */
.checklist-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin: 2rem auto 0;
}

.checklist-category {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: contents;
}

.checklist-result {
    margin-top: 3rem;
    padding: 2rem;
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
}
.profile-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.profile-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}
.profile-card h4 {
    margin-top: 0;
}

/* Mobile responsive styles now handled by universal grid system */

/* Desktop-specific 2x2 grid for checklist */
@media (min-width: 992px) {
    .checklist-categories {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}
