/* =========================================================================
   Pride Resources — Estudios & Toolkits
   ========================================================================= */

.pride-resources {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

/* ── Item (tarjeta) ────────────────────────────────────────────────────── */

.pride-resource-item {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    background-color: #fcede9;
    border-radius: 60px;
    padding: 4px 20px 4px 4px;
    transition: transform 0.25s ease;
}

a.pride-resource-item:hover {
    transform: translateX(5px);
    text-decoration: none !important;
    color: inherit;
}

a.pride-resource-item:hover .pride-resource-card__arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ── Círculo Pride ─────────────────────────────────────────────────────── */

.pride-resource-circle {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 90px;
    z-index: 2;
}

.pride-resource-circle__ring {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 0 !important;
}

.pride-resource-circle__icon img {
    margin-bottom: 0 !important;
}

.pride-resource-circle__icon {
    position: absolute;
    top: 49.5%;
    left: 44.2%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pride-resource-circle__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── Card (cuerpo derecho) ─────────────────────────────────────────────── */

.pride-resource-card {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 6px 10px 6px 14px;
    position: relative;
}

.pride-resource-card__body {
    flex: 1;
}

.pride-resource-card__title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 18px !important;
    margin: 0 0 1px 0 !important;
    padding: 0 !important;
    color: #1a1a1a !important;
}

.pride-resource-card__subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 0.68rem;
    line-height: 1.25;
    margin: 0 !important;
    padding: 0 !important;
    color: #555;
}

/* ── Flecha indicadora ─────────────────────────────────────────────────── */

.pride-resource-card__arrow {
    flex-shrink: 0;
    margin-left: 10px;
    opacity: 0.3;
    color: #1a1a1a;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pride-resource-card__arrow svg {
    display: block;
    width: 16px;
    height: 16px;
}

/* =========================================================================
   Mobile
   ========================================================================= */

@media screen and (max-width: 768px) {

    .pride-resources {
        gap: 12px;
        padding: 6px 0;
    }

    .pride-resource-item {
        padding: 3px 14px 3px 3px;
        border-radius: 50px;
        margin-left: -10px;
        margin-right: -10px;
    }

    .pride-resource-circle {
        width: 75px;
        height: 68px;
    }

    .pride-resource-circle__icon {
        width: 20px;
        height: 20px;
    }

    .pride-resource-card {
        padding: 4px 6px 4px 10px;
    }

    .pride-resource-card__title {
        font-size: 14px !important;
        line-height: 16px !important;
    }

    .pride-resource-card__subtitle {
        font-size: 11px !important;
    }

    a.pride-resource-item:hover {
        transform: none;
    }

    .pride-resource-card__arrow {
        opacity: 0.4;
        margin-left: 6px;
    }
}

@media screen and (max-width: 480px) {

    .pride-resource-item {
        padding: 2px 10px 2px 2px;
        border-radius: 40px;
        margin-left: -14px;
        margin-right: -14px;
    }

    .pride-resource-circle {
        width: 68px;
        height: 62px;
    }

    .pride-resource-circle__icon {
        width: 18px;
        height: 18px;
    }

    .pride-resource-card {
        padding: 4px 4px 4px 8px;
    }

    .pride-resource-card__title {
        font-size: 13px !important;
        line-height: 15px !important;
    }

    .pride-resource-card__subtitle {
        font-size: 10px !important;
    }
}
