/* ========================================
   PRESS KIT PAGE STYLES - OPTIMIZED FOR 100% ZOOM
   ======================================== */

/* ========== PRESS KIT HERO SECTION ========== */
.press-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient(ellipse at 20% 30%, #2B4150 0%, #2B4150 25%, #207C7E 55%, #1D95D1 100%) !important;
}

.press-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* SVG Pattern - UPDATED SIZE AND POSITIONING */
.press-hero-pattern {
    position: absolute;
    top: -3%;
    left: 40%;
    right: -10%;
    bottom: -3%;
    overflow: hidden;
    background-image: url('https://arrowheadprstg.wpengine.com/wp-content/uploads/2026/01/subelement.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 750px;
    opacity: 1;
    z-index: 2;
}

/* Remove all pseudo-elements */
.press-hero-pattern::before,
.press-hero-pattern::after {
    display: none;
}

.press-hero-background::before {
    display: none;
}

.press-hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.press-hero-content {
    max-width: 750px;
    text-align: left;
    padding: 0;
    margin: 0;
}

/* Label */
.press-hero-label {
    color: #6EB510;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

/* Title */
.press-hero-title {
    color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    max-width: 650px !important;
    animation: fadeInTyping 1.2s ease-out;
}

/* Typing animation - clip-path version */
@keyframes fadeInTyping {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* Description */
.press-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 var(--spacing-lg) 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* IMPORTANT: Remove bottom margin if description is last child (no button) */
.press-hero-content > .press-hero-description:last-child {
    margin-bottom: 0;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE HERO PATTERN ========== */

/* Small to Medium Desktop (1000px - 1400px) */
@media (min-width: 1000px) and (max-width: 1400px) {
    .press-hero-pattern {
        left: 45% !important;
        right: -12% !important;
        background-position: 100% center !important;
    }
}

/* Hide SVG pattern on screens less than 1000px */
@media (max-width: 999px) {
    .press-hero-pattern {
        display: none !important;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .press-hero-title {
        font-size: 42px;
        max-width: 550px;
    }
    
    .press-hero-content {
        max-width: 650px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .press-hero-wrapper {
        padding: 0 20px;
    }
    
    .press-hero-section {
        padding: 80px 0;
    }
    
    .press-hero-content {
        max-width: 100%;
    }
    
    .press-hero-label {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .press-hero-title {
        font-size: 40px !important;
        max-width: 100%;
    }
    
    .press-hero-description {
        font-size: 16px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .press-hero-title {
        font-size: 28px;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    .press-hero-label,
    .press-hero-title,
    .press-hero-description {
        animation: none;
    }
}

/* ========== LEADERSHIP TEAM SECTION - SIMPLIFIED ========== */
.press-leadership-section {
    background-color: #F8F8F8;
    padding: 100px 0; /* INCREASED */
}

.press-leadership-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

/* Section Title - REDUCED SIZE */
.press-section-title {
    color: #1D95D1;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 var(--spacing-xl) 0;
    text-align: left;
}

.press-leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Team Member Card - REDUCED PADDING */
.press-team-member {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.press-team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #1D95D1;
}

.team-member-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #E5E5E5;
    aspect-ratio: 1;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.press-team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-info {
    padding: 32px; /* REDUCED from 40px */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Team Member Name - REDUCED SIZE */
.team-member-name {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 22px; /* REDUCED from 24px */
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.team-member-position {
    color: #2b4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0; /* REDUCED from 24px */
    line-height: 1.4;
}

/* Hide department to reduce visual clutter */
.team-member-department {
    display: none;
}

.team-member-bio-toggle {
    margin-top: 20px; /* REDUCED from 24px */
}

.btn-bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #1d95d1;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-bio-toggle:hover {
    color: #2B4150;
}

.btn-bio-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-bio-toggle.active svg {
    transform: rotate(180deg);
}

/* Bio toggle - REDUCED PADDING */
.team-member-bio {
    display: none;
    margin-top: 20px; /* REDUCED from 24px */
    padding: 20px; /* REDUCED from 24px */
    background: #F5F5F5;
    border-radius: 8px;
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.team-member-bio p {
    margin: 0 0 14px 0; /* REDUCED from 16px */
}

.team-member-bio p:last-child {
    margin-bottom: 0;
}

/* Download Headshot Button - REDUCED PADDING */
.btn-download-headshot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2b4150;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 14px; /* REDUCED from 16px */
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 6px;
    background: #F5F9FC;
    border: none;
}

/* Download icon sizing */
.btn-download-headshot svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-download-headshot:hover {
    background: #2b4150;
    color: #FFFFFF;
    transform: translateX(4px);
}

/* Change SVG color on hover */
.btn-download-headshot:hover svg {
    color: #FFFFFF;
}

/* ========== PRESS RELEASES SECTION ========== */
.press-releases-section {
    background-color: #FFFFFF;
    padding: 100px 0; /* INCREASED */
}

.press-releases-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.press-releases-header {
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl) auto;
}

/* Section Title - REDUCED SIZE */
.press-releases-section .press-section-title {
    color: #1D95D1;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 var(--spacing-xl) 0;
    text-align: left;
}

/* 3-column grid for exactly 3 recent releases */
.press-releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl) auto;
}

/* Modern card styling - REDUCED PADDING */
.press-release-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.press-release-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

/* Featured image - REDUCED HEIGHT */
.press-release-image {
    width: 100%;
    height: 220px; /* REDUCED from 240px */
    overflow: hidden;
    background: #E5E5E5;
}

.press-release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-release-card:hover .press-release-image img {
    transform: scale(1.05);
}

/* Card content area - REDUCED PADDING */
.press-release-content {
    padding: 32px; /* REDUCED from 40px */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 14px; /* REDUCED from 16px */
}

/* Date badge - REDUCED SIZE */
.press-release-date {
    color: #1D95D1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Title - REDUCED SIZE */
.press-release-title {
    margin: 0;
}

.press-release-title a {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.press-release-card:hover .press-release-title a {
    color: #1D95D1;
}

/* Excerpt */
.press-release-excerpt {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Read more link */
.press-release-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1D95D1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Arrow using SVG background */
.press-release-link::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 12px;
    margin-left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 1L19 6M19 6L14 11M19 6H1' stroke='%231d95d1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.press-release-link:hover {
    color: #1D95D1;
}

.press-release-link:hover::after {
    transform: translateX(5px);
}

/* View all news button */
.press-archive-cta {
    text-align: center;
    margin-top: 20px; /* REDUCED from 24px */
}

.btn-view-archive {
    display: inline-block;
    background: #1d95d1;
    color: #FFFFFF;
    padding: 14px 36px; /* REDUCED from 16px 40px */
    border: 2px solid #1d95d1;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-archive:hover {
    background: #6EB510;
    border-color: #6EB510;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 181, 16, 0.3);
}

/* ========== LOGOS SECTION ========== */
.press-logos-section {
    background-color: #F8F8F8;
    padding: 100px 0; /* INCREASED */
}

.press-logos-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.press-section-title {
    color: #1D95D1;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 32px 0; /* REDUCED from 40px */
    text-align: left;
}

/* Subtitle - REDUCED SIZE */
.press-logos-subtitle {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.6;
    margin: 0 0 var(--spacing-xl) 0;
    max-width: 700px;
}

.press-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.press-logo-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.press-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #1D95D1;
}

/* Logo preview area - REDUCED HEIGHT */
.logo-preview {
    width: 100%;
    height: 220px; /* REDUCED from 240px */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    padding: var(--spacing-xl);
    position: relative;
}

/* Add subtle pattern or gradient to preview area */
.logo-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(29, 149, 209, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(110, 181, 16, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.logo-preview img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

/* Info section - REDUCED PADDING */
.logo-info {
    padding: 32px; /* REDUCED from 40px */
    background: #FFFFFF;
}

/* Logo Name - REDUCED SIZE */
.logo-name {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px; /* REDUCED from 22px */
    font-weight: 800;
    margin: 0 0 20px 0; /* REDUCED from 24px */
    letter-spacing: -0.5px;
}

.logo-downloads {
    display: flex;
    flex-direction: column;
    gap: 14px; /* REDUCED from 16px */
}

.logo-download-label {
    color: #999999;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Download links */
.logo-download-link {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 6px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Add download icon before text */
.logo-download-link::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15V19C21 19.5304 20.7893 20.0391 20.4142 20.4142C20.0391 20.7893 19.5304 21 19 21H5C4.46957 21 3.96086 20.7893 3.58579 20.4142C3.21071 20.0391 3 19.5304 3 19V15' stroke='%232B4150' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 10L12 15L17 10' stroke='%232B4150' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 15V3' stroke='%232B4150' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.logo-download-link:hover {
    color: #FFFFFF;
    background: #2B4150;
    transform: translateX(4px);
}

/* Change icon color on hover */
.logo-download-link:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15V19C21 19.5304 20.7893 20.0391 20.4142 20.4142C20.0391 20.7893 19.5304 21 19 21H5C4.46957 21 3.96086 20.7893 3.58579 20.4142C3.21071 20.0391 3 19.5304 3 19V15' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 15V3' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Special styling for "Download All" or featured links */
.logo-download-all {
    color: #6EB510;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    background: #F0F8E8;
}

.logo-download-all:hover {
    background: #6EB510;
    color: #FFFFFF;
}

/* Add divider between download options */
.logo-downloads > a:not(:last-child) {
    margin-bottom: 4px;
}

/* ========== COLOR PALETTE SECTION ========== */
.press-colors-section {
    background-color: #F8F8F8;
    padding: 100px 0; /* INCREASED */
}

.press-colors-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.color-group {
    margin-bottom: var(--spacing-xl);
}

.color-group:last-child {
    margin-bottom: 0;
}

/* Color Group Title - REDUCED SIZE */
.color-group-title {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 24px; /* REDUCED from 28px */
    font-weight: 700;
    margin: 0 0 32px 0; /* REDUCED from 40px */
}

.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.color-swatch {
    text-align: center;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.color-swatch:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.color-preview {
    width: 100%;
    height: 150px;
    border-radius: 8px 8px 0 0;
}

/* Color Info - REDUCED PADDING */
.color-info {
    padding: 20px; /* REDUCED from 24px */
    background: #FFFFFF;
}

.color-name {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.color-hex {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.color-accessibility {
    color: #999999;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    margin: 0;
    font-style: italic;
}

/* ========== PHOTO GALLERY SECTION ========== */
.press-gallery-section {
    background-color: #FFFFFF;
    padding: 100px 0; /* INCREASED */
}

.press-gallery-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.press-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 0 var(--spacing-lg) 0;
}

/* Photo Item - REDUCED HEIGHT */
.press-photo-item {
    position: relative;
    height: 260px; /* REDUCED from 280px */
    overflow: hidden;
    border-radius: 8px;
    background: #E5E5E5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.press-photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.press-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-photo-item:hover img {
    transform: scale(1.05);
}

.gallery-cta {
    text-align: center;
}

.btn-view-gallery {
    display: inline-block;
    background: transparent;
    color: #1d95d1;
    padding: 14px 36px; /* REDUCED from 16px 40px */
    border: 2px solid #1d95d1;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-gallery:hover {
    background: #1d95d1;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ========== IN THE NEWS SECTION ========== */
.press-news-section {
    background-color: #F8F8F8;
    padding: 100px 0; /* INCREASED */
}

.press-news-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.press-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.press-news-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.press-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Featured image - REDUCED HEIGHT */
.news-featured-image {
    width: 100%;
    height: 320px; /* REDUCED from 350px */
    overflow: hidden;
    background: #E5E5E5;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-news-card:hover .news-featured-image img {
    transform: scale(1.05);
}

/* Content wrapper - REDUCED PADDING */
.news-card-content {
    padding: 32px; /* REDUCED from 40px */
    display: flex;
    flex-direction: column;
    gap: 20px; /* REDUCED from 24px */
    flex-grow: 1;
}

/* Source Logo - REDUCED HEIGHT */
.news-source-logo {
    height: 46px; /* REDUCED from 50px */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.news-source-logo img {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 14px; /* REDUCED from 16px */
    flex-grow: 1;
}

/* News Headline - REDUCED SIZE */
.news-headline {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.news-excerpt {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Read more link */
.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1d95d1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Arrow using SVG background */
.news-read-more::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 12px;
    margin-left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 1L19 6M19 6L14 11M19 6H1' stroke='%231d95d1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.news-read-more:hover {
    color: #1d95d1;
}

.news-read-more:hover::after {
    transform: translateX(5px);
}

/* ========== SOCIAL MEDIA SECTION ========== */
.press-social-section {
    background-color: #FFFFFF;
    padding: 100px 0; /* INCREASED */
}

.press-social-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.press-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.press-social-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.press-social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Social Post Image - REDUCED HEIGHT */
.social-post-image {
    width: 100%;
    height: 360px; /* REDUCED from 400px */
    overflow: hidden;
    background: #E5E5E5;
}

.social-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-social-card:hover .social-post-image img {
    transform: scale(1.05);
}

/* Social Engagement - REDUCED PADDING */
.social-engagement {
    padding: 20px; /* REDUCED from 24px */
    text-align: center;
    background: #FAFAFA;
}

.social-engagement span {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

/* ========== ABOUT/CONTACT SECTION ========== */
.press-about-section {
    background-color: #FFFFFF;
    padding: 100px 0 !important; /* INCREASED, Match other sections */
    margin-top: 0 !important;
}

.press-about-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.press-about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-column {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 0;
}

/* About H2 - REDUCED SIZE */
.about-content-column h2 {
    color: #1D95D1;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    margin-bottom: 32px; /* REDUCED from 40px */
    margin-top: 0;
}

.about-text {
    margin-bottom: var(--spacing-lg);
}

.about-text p {
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

.about-content-column p {
    margin: 14px 0; /* REDUCED from 16px */
}

/* Services and Certifications */
.services-list,
.certifications {
    margin: 20px 0; /* REDUCED from 24px */
}

/* Make all strong/bold labels the same size */
.about-content-column strong,
.services-list strong,
.certifications strong {
    font-size: 16px;
    font-weight: 600;
}

/* Contact Column - REDUCED PADDING */
.contact-info-column {
    background: #FFFFFF;
    padding: var(--spacing-xl);
    border-radius: 8px;
    height: fit-content;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Contact Title - REDUCED SIZE */
.contact-info-title {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 24px; /* REDUCED from 28px */
    font-weight: 700;
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

.contact-info-column p {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 14px 0; /* REDUCED from 16px */
}

/* Make contact column labels same size too */
.contact-info-column strong {
    font-size: 16px;
    font-weight: 600;
}

.contact-info-column a {
    color: #1d95d1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-column a:hover {
    color: #6EB510;
}

/* ========== CTA/NEWSLETTER SECTION ========== */
.press-cta-section {
    background: linear-gradient(135deg, #2B4150 0%, #207C7E 100%);
    padding: 100px 0; /* INCREASED */
    text-align: center;
}

.press-cta-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.press-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Title - REDUCED SIZE */
.press-cta-title {
    color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

/* CTA Description - REDUCED SIZE */
.press-cta-description {
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.6;
    margin: 0 0 36px 0; /* REDUCED from 40px */
    opacity: 0.9;
}

.press-cta-form {
    max-width: 600px;
    margin: 0 auto;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet */
@media (max-width: 1024px) {
    .press-hero-title {
        font-size: 42px;
    }
    
    .press-hero-description {
        font-size: 16px;
    }
    
    .press-section-title {
        font-size: 32px; /* REDUCED from 36px */
    }
    
    .press-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .press-releases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .press-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .color-palette-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .press-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .press-news-grid {
        grid-template-columns: 1fr;
    }
    
    .press-about-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .press-hero-wrapper,
    .press-leadership-section > .container,
    .press-releases-section > .container,
    .press-logos-section > .container,
    .press-colors-section > .container,
    .press-gallery-section > .container,
    .press-news-section > .container,
    .press-social-section > .container,
    .press-about-section > .container,
    .press-cta-section > .container {
        padding: 0 20px; /* Mobile padding */
    }
    
    .press-hero-section {
        padding: 80px 0;
    }
    
    .press-leadership-section,
    .press-releases-section,
    .press-logos-section,
    .press-colors-section,
    .press-gallery-section,
    .press-news-section,
    .press-social-section,
    .press-about-section,
    .press-cta-section {
        padding: 80px 0 !important; /* INCREASED from 48px */
    }
    
    .press-hero-title {
        font-size: 32px;
    }
    
    .press-hero-description {
        font-size: 16px;
    }
    
    .press-section-title {
        font-size: 28px;
    }
    
    .press-leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .press-releases-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-image {
        height: 280px;
    }
    
    .press-logos-grid {
        grid-template-columns: 1fr;
    }
    
    .color-palette-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .press-photo-grid {
        grid-template-columns: 1fr;
    }
    
    .press-photo-item {
        height: 220px; /* REDUCED from 240px */
    }
    
    .press-social-grid {
        grid-template-columns: 1fr;
    }
    
    .press-cta-title {
        font-size: 28px; /* REDUCED from 32px */
    }
    
    .press-cta-description {
        font-size: 16px;
    }
    
    .news-featured-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .press-hero-title {
        font-size: 28px;
    }
    
    .press-section-title {
        font-size: 24px;
    }
    
    .color-palette-grid {
        grid-template-columns: 1fr;
    }
    
    .press-cta-title {
        font-size: 24px;
    }
}