/* 1. Section & Background */
.blu-founders-note-section {
    background-color: rgb(244, 246, 250); /* bg-[rgb(244,246,250)] */
    padding-top: 32px;    /* py-8 */
    padding-bottom: 32px; /* py-8 */
}

/* 2. Container */
.blu-founders-note-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;   /* px-4 */
    padding-right: 16px;  /* px-4 */
}

/* 3. Content Wrapper */
.blu-founders-note-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 4. Typography */
.blu-founders-note-text {
    font-size: 16px;      /* text-base */
    color: #374151;       /* text-gray-700 */
    line-height: 1.4;     /* leading-[1.4] */
    margin: 0;
}

/* =================================================================== */
/* Responsive Breakpoints
/* =================================================================== */

/* Small Screens (sm: 640px) */
@media (min-width: 640px) {
    .blu-founders-note-text {
        font-size: 18px; /* sm:text-lg */
    }
}

/* Medium Screens (md: 768px) */
@media (min-width: 768px) {
    .blu-founders-note-section {
        padding-top: 64px;    /* md:py-16 */
        padding-bottom: 64px; /* md:py-16 */
    }

  

    .blu-founders-note-text {
        font-size: 20px; /* md:text-xl */
    }
}