/* ===========================================
   Heresy Card Styles
   =========================================== */

.heresy-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideUp 0.6s ease backwards;
}

.heresy-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.heresy-card__image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: var(--bg);
    padding: 16px;
}

.heresy-card__content {
    padding: 16px;
}

.heresy-card__title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.heresy-card__founder {
    margin: 4px 0;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.heresy-card__followers {
    margin: 4px 0;
    font-size: 12px;
    color: var(--danger);
    font-weight: 600;
}

.heresy-card__desc {
    margin: 12px 0 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Heresy Info Section */
.heresy-info-section {
    margin-top: 3rem;
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
    border-left: 4px solid var(--danger);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.info-section-title .material-icons {
    color: var(--danger);
}

.heresy-warning-signs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heresy-warning-signs li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.heresy-warning-signs li:last-child {
    border-bottom: none;
}

.heresy-warning-signs strong {
    color: var(--danger);
}

/* Support Section */
.heresy-support-section {
    margin-top: 2rem;
}

.support-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.support-section-title .material-icons {
    color: var(--primary);
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.support-card {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.support-card h4 {
    margin: 0 0 12px 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}

.support-card p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.support-card strong {
    color: var(--danger);
    font-size: 18px;
}
