.asg-container {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100%;
    margin: 0 auto;
}

.asg-header {
    margin-bottom: 40px;
}

.asg-header-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.asg-header-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layout mapping exactly the asymmetric design */
.asg-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
}

/* Slot mapping */
.asg-card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 480px;
}

.asg-card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.asg-card-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.asg-card-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.asg-card-5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

/* Shared Card Rules */
.asg-card {
    position: relative;
    overflow: hidden;
    display: flex;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.asg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Slot 1: Hero Card rules */
.asg-card-1 {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.asg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.asg-hero-content {
    position: relative;
    z-index: 2;
}

.asg-hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.asg-hero-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.asg-hero-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Vertical Cards (Slot 2 & 3) */
.asg-card-2, .asg-card-3 {
    flex-direction: column;
    padding: 40px;
    justify-content: space-between;
}

.asg-card-icon {
    font-size: 32px;
    margin-bottom: 24px;
}
.asg-card-icon svg {
    width: 32px;
    height: 32px;
}

.asg-card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.asg-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 24px 0;
}

.asg-card-3 .asg-card-desc {
    color: #94A3B8;
}

.asg-card-btn {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.asg-card-btn:hover {
    opacity: 0.8;
}

/* Horizontal Cards (Slot 4 & 5) */
.asg-card-4, .asg-card-5 {
    flex-direction: row;
    align-items: center;
    padding: 24px;
}

.asg-card-thumbnail {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.asg-card-icon-container {
    width: 60px;
    height: 60px;
    background-color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.asg-card-icon-container svg {
    width: 20px;
    height: 20px;
}

.asg-card-body {
    padding-left: 20px;
}

.asg-card-body .asg-card-title {
    margin: 0 0 4px 0;
    font-size: 16px;
}

.asg-card-body .asg-card-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .asg-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .asg-card-1 {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 380px;
    }
    
    .asg-card-2 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .asg-card-3 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .asg-card-4 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .asg-card-5 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .asg-card-1 {
        padding: 24px;
    }
    .asg-hero-title {
        font-size: 22px;
    }
    .asg-card-2, .asg-card-3 {
        padding: 24px;
    }
    .asg-card-4, .asg-card-5 {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .asg-card-body {
        padding-left: 0;
        padding-top: 16px;
    }
}
