/* Container styling */
.vidhi-awards-container {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333333;
    box-sizing: border-box;
}

/* Fallback message style */
.vidhi-awards-no-entries {
    text-align: center;
    padding: 30px;
    background: #f7fafc;
    border: 1px dashed #cbd5e0;
    border-radius: 8px;
    color: #718096;
    font-size: 15px;
}

/* Single Award Entry Card */
.vidhi-award-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 35px 45px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 90, 117, 0.06); /* subtle primary color border */
    margin-bottom: 30px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.vidhi-award-row:last-child {
    margin-bottom: 0;
}

/* Hover effects */
.vidhi-award-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.08), 0 10px 15px -6px rgba(0, 0, 0, 0.06);
    border-color: rgba(37, 90, 117, 0.15);
}

.vidhi-award-row:hover .vidhi-award-badge-img {
    transform: scale(1.05);
    filter: brightness(1.02);
}

/* Left Column: Image/Badge and Organization Name */
.vidhi-award-left {
    flex: 0 0 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.vidhi-award-image-container {
    width: 100%;
    max-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.vidhi-award-badge-img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.vidhi-award-badge-placeholder {
    width: 120px;
    height: 120px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vidhi-award-org-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a4e;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

/* Right Column: Quote and Award Details */
.vidhi-award-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* Quote/Testimonial Text */
.vidhi-award-quote {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    color: #4b5563;
    font-style: italic;
    margin: 0;
    position: relative;
}

/* Award Details (Title & Subtitle) - aligned to right */
.vidhi-award-details {
    align-self: flex-end;
    text-align: right;
    margin-top: 10px;
    max-width: 80%;
}

.vidhi-award-title {
    font-size: 16px;
    font-weight: 700;
    color: #255a75; /* Site primary color */
    margin: 0 0 4px 0;
    letter-spacing: 0.2px;
}

.vidhi-award-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vidhi-award-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .vidhi-award-left {
        flex: 0 0 auto;
        width: 100%;
    }

    .vidhi-award-image-container {
        max-width: 150px;
        min-height: auto;
    }

    .vidhi-award-right {
        width: 100%;
        gap: 20px;
    }

    .vidhi-award-quote {
        font-size: 16px;
    }

    .vidhi-award-details {
        align-self: center;
        text-align: center;
        max-width: 100%;
        margin-top: 5px;
    }

    .vidhi-award-title {
        font-size: 15px;
    }

    .vidhi-award-subtitle {
        font-size: 14px;
    }
}
