/* ===================================
   RESOURCES PAGES STYLES
   =================================== */

/* ===== RESOURCES HERO ===== */
.page-hero {
    padding: 60px 0 60px;
    margin-top: 70px;
}

.page-hero-flex {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.page-hero .page-hero-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 160, 0, 0.1));
    padding: 2rem;
    border-radius: var(--border-radius);
}

.page-hero .page-hero-content h1 {
    color: #B8860B;
}

.page-hero .page-hero-content p {
    color: #DAA520;
}

.page-hero-description {
    flex: 0 0 650px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(185, 20, 25, 0.05));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.page-hero-description h2 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.page-hero-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--primary-red);
    margin: 0;
}

@media (max-width: 968px) {
    .page-hero-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero-description {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 20px 0 40px;
        margin-top: 70px;
    }
}

/* ===== ORGANIZATIONS GRID ===== */
.organizations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F5 0%, var(--light-gray) 100%);
}

.organizations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.org-card {
    background: linear-gradient(to bottom, var(--white), #FFFAFA);
    border: 2px solid rgba(227, 30, 36, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.org-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.org-logo {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-logo-placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.org-logo-placeholder i {
    font-size: 3rem;
    color: var(--primary-red);
}

.org-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.org-content h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.org-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    flex: 1;
}

.org-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.org-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(185, 20, 25, 0.05));
    color: var(--primary-red);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
}

.org-tag i {
    font-size: 0.9rem;
}

.learn-more {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-red);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.org-card:hover .learn-more i {
    transform: translateX(5px);
    transition: var(--transition);
}

/* ===== FOOD PANTRIES SECTION ===== */
.food-pantries-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFFAFA, #FFF5F5);
}

.food-intro {
    max-width: 900px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.pantries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pantry-card {
    background: linear-gradient(to bottom, var(--white), #FFFAFA);
    border: 2px solid rgba(227, 30, 36, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pantry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.pantry-header {
    background: var(--light-gray);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.pantry-header h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.3;
}

.pantry-details {
    padding: 2rem;
}

.pantry-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.pantry-details p:last-child {
    margin-bottom: 0;
}

.pantry-details i {
    color: var(--primary-red);
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 0.2rem;
}

.pantry-details a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

.pantry-details a:hover {
    text-decoration: underline;
}

.pantry-description {
    font-size: 1rem;
    line-height: 1.6;
}

.pantry-restriction {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.org-logo img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===== ENLACE DETAILS SECTION ===== */
.enlace-details-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFFAFA, #FFF5F5);
}

.enlace-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.enlace-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

/* Know Your Rights Section */
.know-your-rights {
    max-width: 900px;
    margin: 3rem auto;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-red);
}

.rights-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rights-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.rights-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.rights-header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0;
}

.rights-content {
    text-align: left;
}

.rights-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.rights-intro {
    font-weight: 600;
    color: var(--black) !important;
}

.rights-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.rights-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.rights-list li i {
    color: var(--primary-red);
    font-size: 1.2rem;
    min-width: 20px;
    margin-top: 0.3rem;
}

.rights-conclusion {
    font-style: italic;
    color: var(--medium-gray) !important;
    border-top: 2px solid #e5e7eb;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.enlace-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(to bottom, var(--white), #FFFAFA);
    border: 2px solid rgba(227, 30, 36, 0.1);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.service-card.language-card,
.service-card.website-card {
    grid-column: 1 / -1;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-content {
    text-align: center;
}

.service-content h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    text-align: left;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    min-width: 30px;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.contact-item a {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ===== ONE SUMMER CHICAGO SECTION ===== */
.osc-details-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFFAFA, #FFF5F5);
}

.osc-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.osc-intro h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.osc-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.osc-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.highlight-card {
    background: linear-gradient(to bottom, var(--white), #FFFAFA);
    border: 2px solid rgba(227, 30, 36, 0.1);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--white);
}

.highlight-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.highlight-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

.application-info {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #fff8e1, #fffde7);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border-left: 5px solid #ffc107;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffc107;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.info-content h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.info-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0;
}

.osc-website {
    max-width: 900px;
    margin: 0 auto;
}

.website-card-large {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-gray);
}

.website-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.website-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.website-content h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.website-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

/* ===== CATHOLIC CHARITIES SECTION ===== */
.cc-details-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFFAFA, #FFF5F5);
}

.cc-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.cc-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.services-section {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.services-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.services-section .services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(to bottom, var(--white), #FFFAFA);
    border: 2px solid rgba(227, 30, 36, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    min-width: 24px;
    margin-top: 0.2rem;
}

.service-item span {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.service-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-item a:hover {
    text-decoration: underline;
}

.contact-regions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.region-card {
    background: linear-gradient(to bottom, var(--white), #FFFAFA);
    border: 2px solid rgba(227, 30, 36, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.region-header {
    background: var(--light-gray);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.region-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.region-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.region-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.region-contacts {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-row i {
    font-size: 1.3rem;
    color: var(--primary-red);
    min-width: 24px;
    margin-top: 0.3rem;
}

.contact-row strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.contact-row a {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

.contact-row a:hover {
    text-decoration: underline;
}

.cc-website {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== HELP SECTION ===== */
.help-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFFAFA, #FFF5F5);
}

.help-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.help-icon {
    width: 120px;
    height: 120px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.help-icon i {
    font-size: 3.5rem;
    color: var(--white);
}

.help-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.help-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.help-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== RESOURCE DETAIL PAGE ===== */
.resource-detail-section {
    padding: 2rem 0 80px;
    background: linear-gradient(to bottom, #FFFAFA, #FFF5F5);
}

.resource-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.resource-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--light-gray);
}

.resource-logo-large {
    flex-shrink: 0;
}

.org-logo-placeholder-large {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(185, 20, 25, 0.05));
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.org-logo-placeholder-large i {
    font-size: 4rem;
    color: var(--primary-red);
}

.resource-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.resource-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--gradient-red);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
}

.resource-content h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin: 2.5rem 0 1.5rem;
}

.resource-content h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 2rem 0 1.2rem;
}

.resource-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    margin: 1.5rem 0;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.services-list li:hover {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05), rgba(185, 20, 25, 0.05));
    transform: translateX(5px);
}

.services-list li > i {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 24px;
}

.services-list strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.services-list p {
    margin: 0;
    font-size: 1rem;
    color: var(--medium-gray);
}

.info-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05), rgba(185, 20, 25, 0.05));
    padding: 2rem;
    border-left: 4px solid var(--primary-red);
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.info-box-icon {
    min-width: 50px;
}

.info-box-icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.info-box-content ul {
    list-style: none;
    margin: 0;
}

.info-box-content li {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-box-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.5rem;
}

/* ===== SIDEBAR ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(185, 20, 25, 0.1));
    color: var(--primary-red);
    border-radius: 8px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
}

.contact-item a {
    color: var(--primary-red);
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
}

.hours-item span:first-child {
    font-weight: 600;
    color: var(--dark-gray);
}

.hours-item span:last-child {
    color: var(--medium-gray);
}

/* ===== RELATED RESOURCES ===== */
.related-resources {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F5 0%, var(--light-gray) 100%);
}

.resources-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card-small {
    background: linear-gradient(to bottom, var(--white), #FFFAFA);
    border: 2px solid rgba(227, 30, 36, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.resource-card-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-card-small a {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.resource-icon-small {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.resource-icon-small i {
    font-size: 1.8rem;
    color: var(--white);
}

.resource-info-small h4 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.resource-info-small p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .organizations-grid {
        grid-template-columns: 1fr;
    }

    .pantries-grid {
        grid-template-columns: 1fr;
    }

    .enlace-services {
        grid-template-columns: 1fr;
    }

    .osc-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
    }

    .services-section .services-list {
        grid-template-columns: 1fr;
    }

    .contact-regions {
        grid-template-columns: 1fr;
    }

    .application-info {
        flex-direction: column;
        text-align: center;
    }

    .help-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .help-icon {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .help-icon i {
        font-size: 3rem;
    }

    .help-buttons {
        justify-content: center;
    }

    .resource-detail-grid {
        grid-template-columns: 1fr;
    }

    .resource-header {
        flex-direction: column;
        text-align: center;
    }

    .resource-title {
        font-size: 2.2rem;
    }

    .resource-categories {
        justify-content: center;
    }

    .resources-grid-small {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .intro-content p {
        font-size: 1.1rem;
    }

    .org-content h3 {
        font-size: 1.4rem;
    }

    .org-content p {
        font-size: 1rem;
    }

    .help-content h2 {
        font-size: 1.8rem;
    }

    .help-content p {
        font-size: 1rem;
    }

    .help-buttons {
        flex-direction: column;
        width: 100%;
    }

    .help-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .resource-title {
        font-size: 1.8rem;
    }

    .resource-header {
        gap: 1.5rem;
    }

    .org-logo-placeholder-large {
        width: 100px;
        height: 100px;
    }

    .org-logo-placeholder-large i {
        font-size: 3rem;
    }

    .services-list li {
        flex-direction: column;
        gap: 1rem;
    }

    .info-box {
        flex-direction: column;
        gap: 1rem;
    }

    .resource-card-small a {
        flex-direction: column;
        text-align: center;
    }

    .resource-icon-small {
        margin: 0 auto;
    }
}
