/* Chapter Subsection Component */
.chapter-subsection .subsection-number {
    font-size: 1.125rem; /* 18px */
    font-size: clamp(1.125rem, 2.5vw, 1.5rem); /* 18px to 24px */
}

.chapter-subsection .chapter-description-section p {
    font-size: 1rem; /* 16px */
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* 16px to 24px */
    line-height: 0.8;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .chapter-subsection .subsection-number {
        font-size: 1.25rem; /* 20px */
    }
    
    .chapter-subsection .chapter-description-section p {
        font-size: 1.25rem; /* 20px */
    }
}

@media (min-width: 992px) {
    .chapter-subsection .subsection-number {
        font-size: 1.5rem; /* 24px */
    }
    
    .chapter-subsection .chapter-description-section p {
        font-size: 1.5rem; /* 24px */
    }
}
