/* ============================================================
   Media/Recognitions Redesign - Premium Architect Theme
   Based on About Us Redesign
   ============================================================ */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    /* Gold */
    --text-color: #4a4a4a;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.4s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
}

/* Page Wrapper */
.media-page-wrapper {
    overflow-x: hidden;
}

/* Hero Section */
.media-hero {
    padding: 20px 0 60px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 100px;
}

.hero-logo-box {
    width: 300px;
    height: 300px;
    border: 10px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.hero-logo-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.hero-text-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-breadcrumbs {
    display: flex;
    gap: 15px;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Tabs (Optional visual element) */
.media-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -30px;
    /* Overlap with hero bottom */
    margin-bottom: 60px;
}

.nav-tab-item {
    background: #fff;
    padding: 15px 40px;
    border: 1px solid #eee;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-tab-item.active,
.nav-tab-item:hover {
    background: #333;
    color: #fff;
    border-color: #333;
    transform: translateY(-2px);
}

/* Sections */
.media-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    text-align: right;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Masonry/Grid Layout for Media Items */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 30px;
}

.media-item {
    background: #fff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.media-image-wrapper {
    position: relative;
    overflow: hidden;
    /* Aspect ratio for magazine covers usually portrait, or landscape for web clippings */
    /* Let's assume varies, but restrict max height or use aspect-ratio */
}

.media-image-wrapper img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.media-item:hover .media-image-wrapper img {
    transform: scale(1.05);
}

.media-content {
    padding: 20px;
    text-align: center;
}

.media-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
}

.media-publication {
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
    font-style: italic;
}

/* Awards Section Specifics */
.awards-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.award-item {
    display: flex;
    align-items: center;
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
}

.award-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.award-year {
    font-size: 3rem;
    font-weight: 800;
    color: #eee;
    margin-right: 40px;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.award-item:hover .award-year {
    color: var(--secondary-color);
}

.award-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.award-info p {
    color: #666;
    margin: 0;
}

/* Press Releases (Text based) */
.press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.press-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.press-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.press-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: #333;
}


/* Responsive */
@media (max-width: 992px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-logo-box {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
    }

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

    .award-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .award-year {
        margin-right: 0;
        margin-bottom: 20px;
    }
}