/* ===========================
   ROOT SECTION
=========================== */

.dr1058resources {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #0b1220, #05070d);
    color: #e8eefc;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    .dr1058resources {
        overflow-x: hidden;
    }
}

/* ===========================
   CONTAINER
=========================== */

.dr1058resources__container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

/* ===========================
   HEADER
=========================== */

.dr1058resources__header {
    text-align: center;
    margin-bottom: 55px;
}

.dr1058resources__title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.dr1058resources__subtitle {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 10px;
    line-height: 1.6;
}

/* ===========================
   GRID (STABLE + CLEAN)
=========================== */

.dr1058resources__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;

    min-width: 0;
}

/* ===========================
   CARD (GLASS PREMIUM)
=========================== */

.dr1058resources__card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);

    transition: transform 0.28s ease, box-shadow 0.28s ease;

    min-width: 0;
    max-width: 100%;

    overflow-wrap: break-word;
    word-break: break-word;
}

/* hover polish */
.dr1058resources__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.65);
}

/* ===========================
   TYPOGRAPHY
=========================== */

.dr1058resources__card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.dr1058resources__text {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.65;
}

/* ===========================
   LISTS
=========================== */

.dr1058resources__list {
    margin-top: 10px;
    padding-left: 18px;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.6;
}

.dr1058resources__list li {
    margin-bottom: 6px;
}

/* ===========================
   HIGHLIGHT BOX
=========================== */

.dr1058resources__highlight {
    margin-top: 10px;
    padding: 12px;
    border-left: 2px solid #6ea8fe;
    background: rgba(110, 168, 254, 0.08);
    border-radius: 10px;
}

/* ===========================
   LIFESTYLE SECTION
=========================== */

.dr1058resources__lifestyle {
    margin-top: 45px;
    padding: 26px;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dr1058resources__lifestyle-title {
    font-size: 18px;
    margin-bottom: 12px;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .dr1058resources {
        padding: 60px 16px;
    }

    .dr1058resources__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dr1058resources__title {
        font-size: 26px;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width: 480px) {
    .dr1058resources__title {
        font-size: 22px;
    }

    .dr1058resources__subtitle {
        font-size: 13px;
    }
}