/* Market Section Styles */

.market-section {
    background-color: #ffffff;
    padding: 0;
    width: 100%;
}

/* Image Column */
.market-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.market-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

/* Content Column */
.market-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 600px;
}

.market-heading {
    font-size: 3.5rem;
    font-weight: 600;
    color: #4a148c;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.market-subheading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.market-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Features List */
.market-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.market-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.market-features li i {
    color: #4a148c;
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.market-features li span {
    flex: 1;
}

/* Demo Button */
.market-demo-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a148c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.market-demo-btn:hover {
    background-color: #6a1b9a;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.market-demo-btn:active {
    transform: translateY(0);
}

/* Client Logos Section */
.market-clients {
    background-color: #ffffff;
    padding: 60px 60px 80px;
    text-align: center;
}

.market-clients-intro {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.market-clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.client-logo svg {
    max-width: 120px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .market-content {
        padding: 60px 40px;
    }
    
    .market-heading {
        font-size: 3.5rem;
    }
    
    .market-clients {
        padding: 50px 40px 60px;
    }
}

@media (max-width: 991.98px) {
    .market-image-wrapper {
        min-height: 400px;
    }
    
    .market-content {
        padding: 50px 30px;
        min-height: auto;
    }
    
    .market-heading {
        font-size: 3rem;
    }
    
    .market-subheading {
        font-size: 1.25rem;
    }
    
    .market-clients-logos {
        gap: 2rem;
    }
    
    .client-logo svg {
        max-width: 100px;
    }
}

@media (max-width: 767.98px) {
    .market-section {
        margin-top: 72px;
    }
    
    .market-image-wrapper {
        min-height: 300px;
        border-radius: 0;
    }
    
    .market-image {
        border-radius: 0;
    }
    
    .market-content {
        padding: 40px 20px;
    }
    
    .market-heading {
        font-size: 2.5rem;
    }
    
    .market-subheading {
        font-size: 1.125rem;
    }
    
    .market-description {
        font-size: 1rem;
    }
    
    .market-features li {
        font-size: 1rem;
    }
    
    .market-demo-btn {
        width: 100%;
        text-align: center;
    }
    
    .market-clients {
        padding: 40px 20px 50px;
    }
    
    .market-clients-intro {
        font-size: 0.9rem;
    }
    
    .market-clients-logos {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .client-logo svg {
        max-width: 90px;
    }
}

@media (max-width: 575.98px) {
    .market-heading {
        font-size: 2rem;
    }
    
    .market-subheading {
        font-size: 1rem;
    }
    
    .market-clients-logos {
        gap: 1rem;
    }
}

/* Why Circana Section Styles */

.why-circana-section {
    background-color: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.why-circana-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4a148c;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.why-circana-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-circana-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.08);
}

.why-circana-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-circana-icon i {
    font-size: 2.5rem;
    color: #4a148c;
}

.why-circana-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a148c;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.why-circana-card-description {
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Why Circana Responsive Design */
@media (max-width: 1199.98px) {
    .why-circana-section {
        padding: 80px 0;
    }
    
    .why-circana-heading {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    
    .why-circana-card {
        padding: 2rem;
    }
}

@media (max-width: 991.98px) {
    .why-circana-section {
        padding: 60px 0;
    }
    
    .why-circana-heading {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .why-circana-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .why-circana-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-circana-icon i {
        font-size: 2rem;
    }
    
    .why-circana-card-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 767.98px) {
    .why-circana-section {
        padding: 50px 0;
    }
    
    .why-circana-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .why-circana-card {
        padding: 1.75rem;
    }
    
    .why-circana-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .why-circana-icon i {
        font-size: 1.75rem;
    }
    
    .why-circana-card-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .why-circana-card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .why-circana-section {
        padding: 40px 0;
    }
    
    .why-circana-heading {
        font-size: 1.75rem;
    }
    
    .why-circana-card {
        padding: 1.5rem;
    }
}

/* Video Section Styles */

.video-section {
    background-color: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.video-poster {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #000000;
}

.video-poster:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-element {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    min-height: 400px;
    background-color: #000000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    padding: 2rem;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    pointer-events: auto;
}

.video-text-overlay {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.video-play-btn i {
    font-size: 2rem;
    margin-left: 4px;
}

.video-play-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.video-play-btn:active {
    transform: scale(1.05);
}

/* Video Section Responsive Design */
@media (max-width: 1199.98px) {
    .video-section {
        padding: 80px 0;
    }
    
    .video-text-overlay {
        font-size: 3.5rem;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .video-play-btn i {
        font-size: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-text-overlay {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .video-play-btn {
        width: 65px;
        height: 65px;
    }
    
    .video-play-btn i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .video-section {
        padding: 50px 0;
    }
    
    .video-text-overlay {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .video-overlay {
        padding: 1.5rem;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .video-play-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .video-section {
        padding: 40px 0;
    }
    
    .video-text-overlay {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .video-overlay {
        padding: 1rem;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-play-btn i {
        font-size: 1rem;
    }
}

/* Featured Enhancements Section Styles */

.featured-enhancements-section {
    background-color: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.featured-enhancements-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a148c;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.featured-enhancements-content {
    padding-right: 3rem;
}

.featured-enhancements-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4a148c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.featured-enhancements-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.featured-enhancements-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-enhancements-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* Featured Enhancements Responsive Design */
@media (max-width: 1199.98px) {
    .featured-enhancements-section {
        padding: 80px 0;
    }
    
    .featured-enhancements-heading {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .featured-enhancements-content {
        padding-right: 2rem;
    }
    
    .featured-enhancements-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    .featured-enhancements-section {
        padding: 60px 0;
    }
    
    .featured-enhancements-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .featured-enhancements-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .featured-enhancements-title {
        font-size: 1.5rem;
    }
    
    .featured-enhancements-description {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .featured-enhancements-section {
        padding: 50px 0;
    }
    
    .featured-enhancements-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .featured-enhancements-content {
        margin-bottom: 1.5rem;
    }
    
    .featured-enhancements-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }
    
    .featured-enhancements-description {
        font-size: 0.95rem;
    }
    
    .featured-enhancements-image {
        border-radius: 8px;
    }
}

@media (max-width: 575.98px) {
    .featured-enhancements-section {
        padding: 40px 0;
    }
    
    .featured-enhancements-heading {
        font-size: 1.5rem;
    }
    
    .featured-enhancements-title {
        font-size: 1.25rem;
    }
}

/* Market Case Studies Section Styles */

.market-case-studies-section {
    background-color: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.market-case-studies-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a148c;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.market-case-studies-view-all {
    font-size: 1rem;
    font-weight: 600;
    color: #4a148c;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.market-case-studies-view-all:hover {
    color: #6a1b9a;
    text-decoration: underline;
}

/* Case Study Card (with image) */
.case-study-card {
    margin-bottom: 2rem;
}

.case-study-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.case-study-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #4a148c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.case-study-description {
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.case-study-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7280;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.tag-divider {
    color: #9ca3af;
}

.case-study-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 2rem 0;
}

/* Case Study Summary (text-only) */
.case-study-summary {
    margin-bottom: 2rem;
}

/* Market Case Studies Responsive Design */
@media (max-width: 1199.98px) {
    .market-case-studies-section {
        padding: 80px 0;
    }
    
    .market-case-studies-heading {
        font-size: 2.25rem;
    }
    
    .case-study-image-wrapper {
        height: 220px;
    }
    
    .case-study-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .market-case-studies-section {
        padding: 60px 0;
    }
    
    .market-case-studies-heading {
        font-size: 2rem;
    }
    
    .case-study-card {
        margin-bottom: 1.5rem;
    }
    
    .case-study-summary {
        margin-bottom: 1.5rem;
    }
    
    .case-study-divider {
        margin: 1.5rem 0;
    }
    
    .case-study-image-wrapper {
        height: 200px;
    }
    
    .case-study-title {
        font-size: 1.125rem;
    }
    
    .case-study-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .market-case-studies-section {
        padding: 50px 0;
    }
    
    .market-case-studies-heading {
        font-size: 1.75rem;
    }
    
    .case-study-card,
    .case-study-summary {
        margin-bottom: 1.25rem;
    }
    
    .case-study-divider {
        margin: 1.25rem 0;
    }
    
    .case-study-image-wrapper {
        height: 180px;
    }
    
    .case-study-title {
        font-size: 1.0625rem;
    }
    
    .case-study-description {
        font-size: 0.9rem;
    }
    
    .case-study-tags {
        font-size: 0.8125rem;
    }
}

@media (max-width: 575.98px) {
    .market-case-studies-section {
        padding: 40px 0;
    }
    
    .market-case-studies-heading {
        font-size: 1.5rem;
    }
    
    .case-study-image-wrapper {
        height: 160px;
    }
    
    .case-study-title {
        font-size: 1rem;
    }
}

/* Market Insights Section Styles */

.market-insights-section {
    background-color: #000000;
    padding: 100px 0;
    width: 100%;
    margin-bottom: 50px;
}

.market-insights-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E67E22;
    margin-bottom: 3rem;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.insight-article-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.insight-article-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.insight-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

.insight-article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    flex: 1;
}

.insight-article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #8B7355;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.meta-divider {
    color: #A0826D;
}

.insight-article-date,
.insight-article-category {
    color: #8B7355;
}

.market-insights-view-all-wrapper {
    margin-top: 3rem;
    padding-left: 0;
}

.market-insights-view-all {
    font-size: 1rem;
    font-weight: 600;
    color: #E67E22;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
}

.market-insights-view-all:hover {
    color: #D35400;
    text-decoration: underline;
}

/* Market Insights Responsive Design */
@media (max-width: 1199.98px) {
    .market-insights-section {
        padding: 80px 0;
    }
    
    .market-insights-heading {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    .insight-article-image-wrapper {
        height: 220px;
    }
    
    .insight-article-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 991.98px) {
    .market-insights-section {
        padding: 60px 0;
    }
    
    .market-insights-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .insight-article-image-wrapper {
        height: 200px;
    }
    
    .insight-article-content {
        padding: 1.25rem;
    }
    
    .insight-article-title {
        font-size: 1.0625rem;
    }
    
    .market-insights-view-all-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .market-insights-section {
        padding: 50px 0;
    }
    
    .market-insights-heading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .insight-article-card {
        margin-bottom: 1.5rem;
    }
    
    .insight-article-image-wrapper {
        height: 180px;
    }
    
    .insight-article-content {
        padding: 1rem;
    }
    
    .insight-article-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .insight-article-meta {
        font-size: 0.8125rem;
    }
    
    .market-insights-view-all-wrapper {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .market-insights-section {
        padding: 40px 0;
    }
    
    .market-insights-heading {
        font-size: 1.5rem;
    }
    
    .insight-article-image-wrapper {
        height: 160px;
    }
    
    .insight-article-title {
        font-size: 0.9375rem;
    }
}

