/* Homepage Sections CSS */

/* Full Width Banner Sections Common Styles */
.full-width-banner {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
}

/* Universal Image Caption Style */
.image-caption {
    font-size: 14px;
    text-align: center;
    color: #374151;
    font-style: normal;
    padding: 0 20px;
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Section 2: Where Skies Become Masterpieces */
.section-masterpieces {
    padding: 80px 0 40px 0;
    background: transparent;
}

.section-masterpieces .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-masterpieces .section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-masterpieces .section-subtitle {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-masterpieces .section-description {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    color: #333;
    max-width: 900px;
    margin: 0 auto 40px;
}

.section-masterpieces .full-width-banner {
    margin: 0 0 20px 0;
}

.section-masterpieces .image-caption {
    font-size: 14px;
    text-align: center;
    color: #374151;
    font-style: normal;
    padding: 0 20px;
    margin-top: 15px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Section 3: Group Captain Profile */
.section-profile {
    padding: 40px 0;
    background: transparent;
}

.section-profile .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 20px;
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-roles {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.profile-content {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.profile-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.award-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 443/284;
    object-fit: contain;
    object-position: center;
}

.award-content {
    padding: 20px;
}

.award-content h3 {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    text-align: center;
}

/* Section 4: Video Profile */
.section-video-profile {
    padding: 40px 0;
    line-height: 0;
    position: relative;
}

.video-banner-wrapper {
    position: relative;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    cursor: pointer;
    line-height: 0;
}

.section-video-profile .video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.section-video-profile .video-play-overlay {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: calc(100% - 0px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.section-video-profile .video-play-overlay:hover {
    background: rgba(0,0,0,0.4);
}

.section-video-profile .play-button {
    transition: transform 0.3s ease;
}

.section-video-profile .video-play-overlay:hover .play-button {
    transform: scale(1.1);
}

.section-video-profile .youtube-video {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 100%;
    border: none;
    z-index: 10;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.section-video-profile .youtube-video.hidden {
    display: none;
}

/* Responsive adjustments for video section */
@media (max-width: 768px) {
    .section-video-profile {
        padding: 40px 0;
    }
    
    .video-banner-wrapper {
        padding: 0 15px;
    }
    
    .section-video-profile .video-play-overlay {
        left: 15px;
        right: 15px;
    }
    
    .section-video-profile .youtube-video {
        left: 15px;
        right: 15px;
    }
}

.section-video-profile .video-play-btn {
    position: absolute;
    bottom: 30px;
    right: 40px;
    background: #666;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.section-video-profile .video-play-btn:hover {
    background: #4a90e2;
    transform: scale(1.05);
}

/* Section 5: Testimonials */
.section-testimonials {
    padding: 40px 0;
    background: transparent;
}

.section-testimonials .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 10px;
}

.section-testimonials .section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-testimonials .section-description {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 40px;
    grid-auto-rows: 1fr; /* Make all cards in the grid equal height */
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
    /* Let grid auto-place all cards - no manual grid-column placement */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

/* Extra quotes - simple inline expand/collapse (no animations, no overlay) */
.testimonial-card.extra-quote {
    /* No animation, no transform, no special positioning - display inline in normal flow */
    position: static !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
    transition: none !important;
}

/* Remove hover transform on extra quotes to keep them simple */
.testimonial-card.extra-quote:hover {
    transform: none !important;
}

.quote-box {
    background: transparent;
    padding: 25px 20px;
    position: relative;
    height: 180px; /* Fixed height for uniformity */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    flex-shrink: 0; /* Prevent shrinking */
}

.quote-mark {
    position: absolute;
    font-size: 48px;
    color: #5a9fd8;
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

.quote-mark-left {
    top: 15px;
    left: 15px;
}

.quote-mark-right {
    bottom: 15px;
    right: 15px;
}

.quote-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    text-align: center;
    padding: 10px 35px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1; /* Take remaining space */
    justify-content: center; /* Center content vertically */
}

.testimonial-author img {
    width: 100%;
    height: auto;
    max-width: 207px;
    aspect-ratio: 207/235;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
}

.author-info {
    text-align: center;
}

.author-info h4 {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.view-more-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    background: #666;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: capitalize;
}

.btn-view-more:hover {
    background: #4a90e2;
    transform: scale(1.05);
}

/* Mobile responsiveness for testimonials section - Simple expand/collapse */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
        grid-auto-rows: auto; /* Auto height on mobile for better spacing */
    }

    .testimonial-card {
        margin: 0 auto;
        max-width: 350px;
        width: 100%; /* Full width up to max-width */
    }

    /* Extra quotes appear inline in grid flow - no overlay, no animation */
    .testimonial-card.extra-quote {
        position: static !important;
        margin: 0 auto;
        max-width: 350px;
        width: 100%; /* Full width up to max-width */
    }

    .quote-box {
        padding: 20px 15px;
        height: 160px; /* Fixed height for uniformity on mobile */
    }

    .quote-mark {
        font-size: 36px;
    }

    .quote-mark-left {
        top: 10px;
        left: 10px;
    }

    .quote-mark-right {
        bottom: 10px;
        right: 10px;
    }

    .quote-text {
        font-size: 13px;
        padding: 10px 25px;
    }

    .testimonial-author img {
        width: 100%;
        height: auto;
        max-width: 150px;
        aspect-ratio: 207/235;
        object-fit: contain;
        object-position: center;
        background: white;
    }

    .author-info h4 {
        font-size: 12px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        grid-auto-rows: 1fr; /* Equal height cards on tablet */
    }
}

/* Section 6: Celebrity Encounters */
.section-celebrity-encounters {
    padding: 40px 0;
    background: transparent;
}

.encounters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.encounter-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.encounter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.encounter-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 695/465;
    object-fit: contain;
    object-position: center;
}

.encounter-card h3 {
    padding: 20px;
    font-size: 14px;
    text-align: center;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Section 7: Artistic Legacy */
.section-artistic-legacy {
    padding: 40px 0;
    background: transparent;
}

.section-artistic-legacy .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-artistic-legacy .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 0;
}

.section-artistic-legacy .section-description {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    color: #333;
    max-width: 900px;
    margin: 0 auto 1rem;
}

.section-artistic-legacy .full-width-banner {
    margin: 0 0 20px 0;
}

.section-artistic-legacy .image-caption {
    font-size: 14px;
    text-align: center;
    color: #374151;
    font-style: normal;
    padding: 0 20px;
    margin-top: 15px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Section 8: Global Exhibitions */
.section-exhibitions {
    padding: 40px 0;
    background: transparent;
}

.section-exhibitions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-exhibitions .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 30px;
}

.section-exhibitions .section-description {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    color: #333;
    max-width: 900px;
    margin: 0 auto 40px;
}

.section-exhibitions .full-width-banner {
    margin: 0 0 20px 0;
}

.section-exhibitions .image-caption {
    font-size: 14px;
    text-align: center;
    color: #374151;
    font-style: normal;
    padding: 0 20px;
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-exhibitions .button-wrapper {
    text-align: center;
}

.section-exhibitions .btn-view-more {
    background: #666;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: capitalize;
}

.section-exhibitions .btn-view-more:hover {
    background: #4a90e2;
    transform: scale(1.05);
}

/* Section: Captivating Lectures */
.section-lectures {
    padding: 40px 0;
    background: transparent;
}

.section-lectures .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-lectures .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 30px;
}

.section-lectures .section-description {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    color: #333;
    max-width: 900px;
    margin: 0 auto 40px;
}

.section-lectures .full-width-banner {
    margin: 0 0 20px 0;
}

.section-lectures .image-caption {
    font-size: 14px;
    text-align: center;
    color: #374151;
    font-style: normal;
    padding: 0 20px;
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-lectures .button-wrapper {
    text-align: center;
}

.section-lectures .btn-view-more {
    background: #666;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: capitalize;
}

.section-lectures .btn-view-more:hover {
    background: #4a90e2;
    transform: scale(1.05);
}

/* Section 9: Flying High Book */
.section-flying-high {
    padding: 40px 0;
    background: transparent;
}

.section-flying-high .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 10px;
}

.section-flying-high .section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.book-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.book-image {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
}

.book-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 533/571;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    object-fit: contain;
}

.book-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.book-contributors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.contributor-card {
    text-align: center;
}

.contributor-card img {
    width: 100%;
    height: auto;
    max-width: 400px;
    aspect-ratio: 368/381;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contributor-card h4 {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.book-footer {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: #333;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Section 10: Immortalizing the Skies */
.section-immortalizing {
    padding: 40px 0;
    background: transparent;
}

.section-immortalizing .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 20px;
}

.section-immortalizing .section-description {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: #333;
    margin-bottom: 50px;
}

.paintings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.painting-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.painting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.painting-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 519/527;
    object-fit: contain;
    object-position: center;
}

.painting-card h3 {
    padding: 15px 20px 5px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.painting-card p {
    padding: 0 20px 20px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section 11: The Sky Remembers */
.section-sky-remembers {
    padding: 40px 0;
    background: transparent;
}

.section-sky-remembers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-sky-remembers .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #4a90e2;
    margin-bottom: 40px;
}

.section-sky-remembers .full-width-banner {
    margin: 0 0 20px 0;
}

.section-sky-remembers .image-caption {
    font-size: 14px;
    text-align: center;
    color: #374151;
    font-style: normal;
    padding: 0 20px;
    margin-top: 15px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Common Button Styles */
.view-more-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-view-more,
.btn-shop-online {
    background: #666;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-more:hover,
.btn-shop-online:hover {
    background: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-shop-online {
    background: #4a90e2;
}

.btn-shop-online:hover {
    background: #357abd;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .masterpiece-content {
        flex-direction: column;
    }
    
    .testimonials-grid,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .book-contributors {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .paintings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px !important;
    }
    
    .section-masterpieces .section-title {
        font-size: 28px !important;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .section-masterpieces .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
        line-height: 1.4;
    }
    
    .section-masterpieces .section-description {
        font-size: 14px;
        padding: 0 15px;
        line-height: 1.6;
    }
    
    /* Responsive Image Caption Styles */
    .image-caption {
        font-size: 13px;
        padding: 0 15px;
        letter-spacing: 0.4px;
        margin-top: 12px;
    }
    
    .testimonials-grid,
    .awards-grid,
    .encounters-grid,
    .paintings-grid {
        grid-template-columns: 1fr;
    }
    
    .book-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .book-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .book-image img {
        width: 80%;
        max-width: 350px;
    }

    .book-description p {
        text-align: center;
    }

    .award-card img,
    .encounter-card img,
    .painting-card img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .contributor-card img {
        width: 100%;
        height: auto;
        max-width: 200px;
        aspect-ratio: 368/381;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-view-more,
    .btn-shop-online {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .section-masterpieces,
    .section-profile,
    .section-testimonials,
    .section-celebrity-encounters,
    .section-artistic-legacy,
    .section-exhibitions,
    .section-flying-high,
    .section-immortalizing,
    .section-sky-remembers {
        padding: 30px 0;
    }
    
    .section-masterpieces .container,
    .section-profile .container {
        padding: 0 15px;
    }
    
    .section-masterpieces .section-title {
        font-size: 22px !important;
        padding: 0 5px;
    }
    
    .section-masterpieces .section-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .section-masterpieces .section-description {
        font-size: 13px;
        padding: 0 10px;
    }
    
    /* Mobile Image Caption Styles */
    .image-caption {
        font-size: 12px;
        padding: 0 10px;
        letter-spacing: 0.3px;
        margin-top: 10px;
    }
    
    .book-contributors {
        grid-template-columns: 1fr;
    }
    
    .contributor-card img {
        width: 100%;
        height: auto;
        max-width: 180px;
        aspect-ratio: 368/381;
    }
    
    .book-image img {
        width: 200px;
        max-width: calc(100vw - 20px);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .section-masterpieces .section-title {
        font-size: 20px !important;
        padding: 0 10px;
        margin-bottom: 15px;
    }
    
    .section-masterpieces .section-subtitle {
        font-size: 12px;
        padding: 0 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .section-masterpieces .section-description {
        font-size: 12px;
        padding: 0 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .section-profile .section-title {
        font-size: 18px !important;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .profile-roles {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .profile-content p {
        font-size: 13px;
        padding: 0 15px;
        line-height: 1.7;
        text-align: left;
    }
    
    .award-content h3 {
        font-size: 12px;
        line-height: 1.5;
        padding: 0 5px;
    }
    
    .testimonial-card .quote-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .author-info h4 {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .btn-view-more {
        font-size: 13px;
        padding: 12px 20px;
        min-width: 150px;
    }
}