.content-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.section-header {
    font-family: 'Playfair Display', serif;
    color: var(--brand-dark);
    margin-bottom: 20px;
    border-left: 4px solid var(--brand-red);
    padding-left: 15px;
    font-size: 1.5rem;
}

.resource-list {
    list-style: none;
    padding-left: 0;
}

.resource-list li {
    margin-bottom: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 12px;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
    display: flex;
    align-items: flex-start;
}

.resource-list a:hover {
    color: var(--brand-red);
}

.resource-icon {
    margin-right: 10px;
    margin-top: 4px;
    color: var(--brand-gold);
}

.resource-image-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-top: 3px;
}

.highlight-box {
    background-color: rgba(192, 78, 70, 0.05);
    border-left: 4px solid var(--brand-red);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}
