/* Doctrinal Section Styles */
.doctrinal-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.doctrinal-section .icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(123, 30, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #7B1E22;
}

.doctrinal-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.doctrinal-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.doctrinal-section .card-title {
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.doctrinal-section .card-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #7B1E22;
    border-radius: 2px;
}

.doctrinal-content {
    font-size: 0.95rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.doctrinal-content::-webkit-scrollbar {
    width: 6px;
}

.doctrinal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.doctrinal-content::-webkit-scrollbar-thumb {
    background: #c1d3f1;
    border-radius: 10px;
}

.doctrinal-content::-webkit-scrollbar-thumb:hover {
    background: #7B1E22;
}

.doctrinal-content ol {
    padding-left: 1.2rem;
}

.doctrinal-content ol li {
    margin-bottom: 10px;
}

.doctrinal-content blockquote {
    border-left: 4px solid #D4AF37;
    padding-left: 15px;
    font-style: italic;
    color: #555;
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .doctrinal-section .col-md-4 {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .doctrinal-section {
        padding: 50px 0;
    }
    
    .doctrinal-content {
        max-height: 300px;
    }
}
