/* ============================================================
   ARDA Award Page Styles (Page-Specific Only)
   Riverside Home Designs
   Last Modified: 2025-11-26
   ============================================================ */

/* Award Highlight Box */
.award-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px solid #1464d1;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.award-trophy {
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.award-text {
    flex: 1;
    min-width: 280px;
}

.award-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #c0392b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.award-text h2 {
    font-size: 2rem;
    color: #1464d1;
    margin: 10px 0;
}

.award-category {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 10px 0 5px;
}

.award-org {
    font-size: 1rem;
    color: #555;
    font-style: italic;
}

.award-years {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1464d1;
    margin-top: 15px;
}

/* Override float image size for this page */
.image-float-left {
    max-width: 250px;
}

/* ============================================================
   Responsive Adjustments
   ============================================================ */

@media (max-width: 768px) {
    .award-highlight {
        flex-direction: column;
        padding: 20px;
    }
    
    .award-trophy {
        max-width: 220px;
    }
    
    .award-text h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .award-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .award-text h2 {
        font-size: 1.4rem;
    }
    
    .award-category {
        font-size: 1.05rem;
    }
    
    .award-years {
        font-size: 1.1rem;
    }
}
