.landing-top {
    display: grid;
    grid-template-columns: 60fr 40fr;
    margin: 0 0 3rem 0;
    gap: 1rem;
}

@media screen and (max-width: 768px) {
    .landing-top {
        display: flex;
        flex-direction: column-reverse;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .landing-top {
        margin-bottom: 1.75rem;
    }
}

/* ========================================
   LOGIN RESOURCES SECTION
   ======================================== */

#login-resources {
    margin: 2rem 0;
}

.login-resources-inner {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: 3fr 2fr 2fr;
    gap: 1rem;
}

#login-resources .login-card,
#login-resources .login-card:hover {
    background-color: var(--bg-accent);
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
    #login-resources {
        margin: 1.75rem 0;
    }
    
    .login-resources-inner {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
}

@media screen and (max-width: 480px) {
    #login-resources {
        margin: 1.5rem 0;
    }

    .login-resources-inner {
        gap: 0.75rem;
    }
}

/* ========================================
   FEATURED RESOURCES SECTION
   ======================================== */

#featured-resources {
    margin: 2rem 0;
}

@media screen and (max-width: 768px) {
    #featured-resources {
        margin: 1.75rem 0;
    }
}

@media screen and (max-width: 480px) {
    #featured-resources {
        margin: 1.5rem 0;
    }
}

/* ========================================
   DEDICATED RESOURCES SECTION
   ======================================== */

#dedicated-resources {
    margin: 2rem 0;
}

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

/* Responsive Layout */
@media screen and (max-width: 768px) {
    #dedicated-resources {
        margin: 1.75rem 0;
    }
    
    .dedicated-resources-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
}

@media screen and (max-width: 480px) {
    #dedicated-resources {
        margin: 1.5rem 0;
    }
    
    .dedicated-resources-grid {
        gap: 0.75rem;
    }
}

/* ========================================
   ADDITIONAL RESOURCES SECTION
   ======================================== */

#additional-resources {
    margin: 3rem 0 2rem 0;
}

.additional-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Center icons and content on desktop */
#additional-resources .card-vertical {
    align-items: center;
}

#additional-resources .card-content {
    text-align: center;
}

#additional-resources .card-clickable:hover {
    border-color: var(--brand-primary);
}

/* Hover effect - change secondary icons to brand primary */
#additional-resources .card-clickable:hover .card-icon.secondary {
    background-color: var(--brand-primary);
}

#additional-resources .card-clickable:hover .card-icon.secondary span {
    color: var(--brand-on-primary);
}

/* Section Header */
.section-header {
    margin-bottom: 1.5rem;
}

.section-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
    #additional-resources {
        margin: 2.5rem 0 1.5rem 0;
    }
    
    .additional-resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    /* Left-align on tablet */
    #additional-resources .card-vertical {
        align-items: flex-start;
    }
    
    #additional-resources .card-content {
        text-align: left;
    }
    
    .section-header h3 {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 480px) {
    #additional-resources {
        margin: 2rem 0 1.5rem 0;
    }
    
    .additional-resources-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .section-header h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   ADDITIONAL ACTIONS SECTION
   ======================================== */

#additional-actions {
    margin: 3rem 0 2rem 0;
}

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

/* Responsive Layout */
@media screen and (max-width: 768px) {
    #additional-actions {
        margin: 2.5rem 0 1.5rem 0;
    }
    
    .additional-actions-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
}

@media screen and (max-width: 480px) {
    #additional-actions {
        margin: 2rem 0 1.5rem 0;
    }
    
    .additional-actions-grid {
        gap: 0.75rem;
    }
}

/* ========================================
   OFFERINGS SECTION
   ======================================== */

#offerings-section {
    margin: 3rem 0 2rem 0;
}

/* Offerings Header */
.offerings-header {
    margin-bottom: 2rem;
}

.offerings-header-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.offerings-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background-color: var(--brand-primary);
    flex-shrink: 0;
}

.offerings-icon span {
    color: var(--brand-on-primary);
    font-size: 1.5rem;
}

.offerings-text {
    flex: 1;
}

.offerings-text h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.offerings-text p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
    #offerings-section {
        margin: 2.5rem 0 1.5rem 0;
    }
    
    .offerings-header {
        margin-bottom: 1.5rem;
    }
    
    .offerings-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .offerings-icon span {
        font-size: 1.25rem;
    }
    
    .offerings-text h3 {
        font-size: 1.375rem;
    }
    
    .offerings-text p {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 480px) {
    #offerings-section {
        margin: 2rem 0 1.5rem 0;
    }
    
    .offerings-header {
        margin-bottom: 1.25rem;
    }
    
    .offerings-header-content {
        gap: 0.75rem;
    }
    
    .offerings-text h3 {
        font-size: 1.25rem;
    }
    
    .offerings-text p {
        font-size: 0.8125rem;
    }
}