/* ===========================
   PRESS PAGE STYLES
   =========================== */
.awards-section {
    margin: 50px 0;
}

.awards-section h2 {
    text-align: center;
    color: rgb(27, 39, 116);
    margin-bottom: 20px;
}

.awards-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.award-highlight {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.award-badge {
    flex-shrink: 0;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-badge img {
    width: 100%;
    height: auto;
}

.award-content h3 {
    color: rgb(27, 39, 116);
    margin-bottom: 8px;
}

.award-category {
    font-size: 15px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.award-content p {
    line-height: 1.7rem;
    margin-bottom: 18px;
    text-align: justify;
}

.award-content .learn-more {
    font-weight: bold;
}

/* Recognition split */
.recognision {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Press & Awards Specific Styles */
.award-container {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 10px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}
.award-container > div {
    flex: 1 1 45%;
}
.award-badge {
    text-align: center;
}

.award-badge img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.award-details h2 {
    color: #1b2774;
    margin-top: 20px;
}

.award-category {
    font-size: 1.1em;
    color: #00cc99;
    font-weight: bold;
    margin: 10px 0;
}

.award-description {
    color: #333;
    line-height: 1.8;
    margin: 20px 0;
}

.award-date {
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

.award-photo-section {
    text-align: center;
}

.award-photo-section img {
    height: 50vh;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.photo-caption {
    font-size: 0.95em;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.press-items {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.press-item {
    padding: 25px;
    background-color: white;
    border-left: 4px solid #00cc99;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.press-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.press-header h3 {
    color: #1b2774;
    margin: 0 0 10px 0;
}

.press-source {
    color: #00cc99;
    font-weight: bold;
    font-size: 0.95em;
    margin: 0;
}

.press-excerpt {
    color: #333;
    line-height: 1.8;
    margin: 15px 0;
    font-style: italic;
}

.press-link {
    color: #00cc99;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: #00b386;
    text-decoration: underline;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.partner-card {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h3 {
    color: #1b2774;
    margin: 15px 0 10px 0;
}

.partner-amount {
    font-size: 1.3em;
    color: #00cc99;
    font-weight: bold;
    margin: 10px 0;
}

.partner-description {
    color: #333;
    line-height: 1.8;
    margin: 15px 0;
    text-align: left;
}

.partner-date {
    color: #666;
    font-size: 0.95em;
    margin-top: 15px;
}

.partnership-impact {
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.partnership-impact h3 {
    color: #1b2774;
}

.partnership-impact p {
    color: #333;
    line-height: 1.8;
}

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

    .partners-grid {
        grid-template-columns: 1fr;
    }
    .award-container{
        display: block;
        padding: 10px;
    }
    .award-photo-section img{
        width: 100%;
        height: auto;
    }
    
}