/* Override main container for full-width */
#echo-main.echo-homepage-main {
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Navigation font-weight adjustment for homepage */
body.home #echo-nav .echo-menu a {
    font-weight: 400 !important;
}

/* Navigation hover effects and spacing */
body.home #echo-nav .echo-menu {
    gap: 40px !important; /* Increased spacing between menu items */
}

body.home #echo-nav .echo-menu a {
    position: relative;
    transition: color 0.3s ease;
}

body.home #echo-nav .echo-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #821415;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

body.home #echo-nav .echo-menu a:hover::after {
    transform: scaleX(1);
}

/* Header overlay adjustment for homepage */
body.home #echo-header.echo-state-initial {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: transparent !important;
    box-shadow: none !important;
}

body.home #echo-header.echo-state-scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: #fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.06) !important;
    border-top: 6px solid #821415; /* Red line on top - increased to 6px */
}

/* Remove the conflicting height overrides to use global header height */

/* Remove header padding compensation since header starts as overlay */
body.home.echo-has-fixed-header {
    padding-top: var(--echo-header-height) !important; /* Use global header height */
}

/* Hero Banner Styles */
.echo-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

/* YouTube Background Video */
.echo-hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.echo-hero-video-bg iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

/* Hero Content Overlay */
.echo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.echo-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.echo-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.echo-hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #821415;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.echo-hero-cta:hover {
    background-color: #fff;
    color: #821415;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* Scroll Down Indicator */
.echo-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.echo-scroll-indicator:hover {
    opacity: 0.7;
}

.echo-scroll-text {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.echo-scroll-arrows {
    position: relative;
    height: 60px;
    width: 24px;
}

.echo-scroll-arrow {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-left: none;
    border-top: none;
    transform: translateX(-50%) rotate(45deg);
    opacity: 0;
}

.echo-scroll-arrow:nth-child(1) {
    top: 0;
    animation: echoScrollFlow 2s infinite 0s;
}

.echo-scroll-arrow:nth-child(2) {
    top: 15px;
    animation: echoScrollFlow 2s infinite 0.3s;
}

.echo-scroll-arrow:nth-child(3) {
    top: 30px;
    animation: echoScrollFlow 2s infinite 0.6s;
}

@keyframes echoScrollFlow {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) rotate(45deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(0px) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) rotate(45deg);
    }
}

/* Video Overlay for better text readability */
.echo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

/* Second Section Styles */
.echo-second-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    min-height: auto;
}

.echo-stats-section .echo-stats-content {
    text-align: center;
}

.echo-stats-title {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    z-index:1;
}

.echo-stats-title::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: #821415;
    z-index: -1;
    opacity: 0.8;
}

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

.echo-stat-item {
    text-align: center;
    padding: 20px;
}

.echo-chart-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.echo-chart {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    width: 140px;
    height: 140px;
}

.echo-chart-number {
    font-size: 24px;
    font-weight: bold;
    fill: #333;
    font-family: inherit;
    transition: all 0.3s ease;
}

.echo-progress-circle {
    transition: stroke-dashoffset 3s ease-in-out;
}

.echo-stat-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.echo-stat-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Third Section - Services */
.echo-third-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.echo-services-content {
    text-align: center;
}

.echo-services-title {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    z-index:1;
}

.echo-services-title::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: #821415;
    z-index: -1;
    opacity: 0.8;
}

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

.echo-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.echo-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.echo-service-icon {
    margin-bottom: 30px;
}

.echo-icon-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.echo-service-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.echo-service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

/* Fourth Section - About Echo */
.echo-fourth-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.echo-parallax-bg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background-image: url('/wp-content/uploads/2025/09/echo-section-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 1;
}

.echo-fourth-section .echo-container {
    position: relative;
    z-index: 2;
}

.echo-about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.echo-about-title {
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
}

.echo-about-description {
    font-size: 1.2rem;
    color: white;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
}

.echo-about-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #821415;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.echo-about-cta:hover {
    background-color: #821415;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .echo-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .echo-chart {
        width: 120px;
        height: 120px;
    }
    
    .echo-second-section {
        padding: 60px 0;
    }
    
    .echo-stats-title {
        margin-bottom: 40px;
        font-size: 32px;
        position: relative;
        display: inline-block;
    }
    
    .echo-stats-title::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: #821415;
        z-index: -1;
        opacity: 0.8;
    }
    
    .echo-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .echo-services-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .echo-third-section {
        padding: 60px 0;
    }
    
    .echo-service-card {
        padding: 30px 20px;
    }
    
    .echo-parallax-bg {
        top: 0;
        height: 100%;
        background-attachment: scroll;
    }
    
    .echo-about-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .echo-about-description {
        font-size: 1.1rem;
    }
    
    .echo-about-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .echo-fourth-section {
        padding: 60px 0;
        min-height: 50vh;
    }
    
    .echo-hero-banner {
        height: 80vh;
        min-height: 500px;
    }
    
    .echo-hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .echo-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .echo-stat-item {
        padding: 15px;
    }
    
    .echo-stats-title {
        font-size: 28px;
        position: relative;
        display: inline-block;
    }
    
    .echo-stats-title::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: #821415;
        z-index: -1;
        opacity: 0.8;
    }
    
    .echo-services-title {
        font-size: 28px;
        position: relative;
        display: inline-block;
    }
    
    .echo-services-title::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: #821415;
        z-index: -1;
        opacity: 0.8;
    }
    
    .echo-service-title {
        font-size: 1.5rem;
    }
    
    .echo-icon-image {
        width: 60px;
        height: 60px;
    }
    
    .echo-about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .echo-about-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .echo-about-cta {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .echo-fourth-section {
        padding: 50px 0;
        min-height: 40vh;
    }
}

/* Fifth Section - Advantages */
.echo-fifth-section {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    overflow: hidden;
}

.echo-advantages-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/09/advantages-echo-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.echo-fifth-section .echo-container {
    position: relative;
    z-index: 3;
}

.echo-advantages-content {
    text-align: center;
}

.echo-advantages-title {
    font-size: 40px;
    font-weight: bold;
    color: #821415;
    margin-bottom: 80px;
}

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

.echo-advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.echo-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #821415, #a01617);
    transform: scaleX(0) translateZ(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    will-change: transform;
}

.echo-advantage-card:hover {
    transform: translate3d(0, -15px, 0) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.echo-advantage-card:nth-child(even):hover {
    transform: translate3d(0, -15px, 0) rotate(-2deg);
}

.echo-advantage-card:hover::before {
    transform: scaleX(1) translateZ(0);
}

.echo-advantage-number {
    font-size: 3rem;
    font-weight: bold;
    color: #821415;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(130, 20, 21, 0.2);
}

.echo-advantage-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.echo-advantage-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: left;
}

/* Advantages Section Responsive */
@media (max-width: 768px) {
    .echo-advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .echo-advantages-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .echo-fifth-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .echo-advantage-card {
        padding: 30px 25px;
    }
    
    .echo-advantage-number {
        font-size: 2.5rem;
    }
    
    .echo-advantage-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .echo-advantages-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .echo-fifth-section {
        padding: 60px 0;
    }
    
    .echo-advantage-card {
        padding: 25px 20px;
    }
    
    .echo-advantage-number {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .echo-advantage-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .echo-advantage-description {
        font-size: 0.95rem;
    }
}

/* Sixth Section - Achievements */
.echo-sixth-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.echo-sixth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/09/echo-archive-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.echo-sixth-section .echo-container {
    position: relative;
    z-index: 2;
}

.echo-achievements-content {
    text-align: center;
}

.echo-achievements-title {
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin-bottom: 80px;
}

.echo-achievements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.echo-achievement-item {
    text-align: center;
    position: relative;
}

.echo-achievement-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    display: inline-block;
    min-height: 80px;
    line-height: 1;
    transition: all 0.3s ease;
}

.echo-achievement-suffix {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    display: inline-block;
    margin-left: 5px;
}

.echo-achievement-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-top: 15px;
    line-height: 1.4;
}

.echo-achievement-item:hover .echo-achievement-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.echo-achievement-item:hover .echo-achievement-suffix {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Achievements Section Responsive */
@media (max-width: 1024px) {
    .echo-achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .echo-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .echo-achievements-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .echo-sixth-section {
        padding: 80px 0;
    }
    
    .echo-achievement-number {
        font-size: 2.8rem;
    }
    
    .echo-achievement-suffix {
        font-size: 2.8rem;
    }
    
    .echo-achievement-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .echo-achievements-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .echo-achievements-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .echo-sixth-section {
        padding: 60px 0;
    }
    
    .echo-achievement-number {
        font-size: 2.5rem;
    }
    
    .echo-achievement-suffix {
        font-size: 2.5rem;
    }
    
    .echo-achievement-label {
        font-size: 1rem;
    }
}

/* Seventh Section - Blog Articles */
.echo-seventh-section {
    background-color: #f8f9fa;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.echo-seventh-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(circle at center, transparent 50px, #821415 52px, #821415 54px, transparent 56px),
        radial-gradient(circle at center, transparent 110px, rgba(130, 20, 21, 0.6) 112px, rgba(130, 20, 21, 0.6) 114px, transparent 116px),
        radial-gradient(circle at center, transparent 170px, rgba(130, 20, 21, 0.4) 172px, rgba(130, 20, 21, 0.4) 174px, transparent 176px),
        radial-gradient(circle at center, transparent 230px, rgba(130, 20, 21, 0.3) 232px, rgba(130, 20, 21, 0.3) 234px, transparent 236px),
        radial-gradient(circle at center, transparent 290px, rgba(130, 20, 21, 0.2) 292px, rgba(130, 20, 21, 0.2) 294px, transparent 296px),
        radial-gradient(circle at center, transparent 350px, rgba(130, 20, 21, 0.15) 352px, rgba(130, 20, 21, 0.15) 354px, transparent 356px),
        radial-gradient(circle at center, transparent 410px, rgba(130, 20, 21, 0.1) 412px, rgba(130, 20, 21, 0.1) 414px, transparent 416px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.echo-seventh-section .echo-container {
    position: relative;
    z-index: 2;
}

.echo-blog-content {
    text-align: center;
}

.echo-blog-title {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.echo-blog-title::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: #821415;
    z-index: -1;
    opacity: 0.8;
}

.echo-blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    align-items: start;
}

/* Featured Article Styles */
.echo-blog-featured {
    position: relative;
}

.echo-featured-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.echo-featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.echo-article-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.echo-featured-card:hover .echo-featured-img {
    transform: scale(1.05);
}

.echo-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.echo-featured-card:hover .echo-article-overlay {
    opacity: 1;
}

.echo-article-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #821415, #a01617);
    display: flex;
    align-items: center;
    justify-content: center;
}

.echo-placeholder-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.echo-article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.echo-article-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 15px;
}

.echo-article-title a:hover {
    color: #821415;
}

.echo-article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex: 1;
}

.echo-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.echo-article-date {
    color: #821415;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sidebar Articles Styles */
.echo-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.echo-sidebar-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: stretch;
    flex: 1;
}

.echo-sidebar-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.echo-sidebar-card .echo-article-image {
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

.echo-sidebar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.echo-sidebar-card:hover .echo-sidebar-img {
    transform: scale(1.1);
}

.echo-sidebar-placeholder {
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, #821415, #a01617);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.echo-sidebar-placeholder .echo-placeholder-text {
    font-size: 0.8rem;
}

.echo-sidebar-card .echo-article-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.echo-sidebar-card .echo-article-title a {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
    flex: 1;
}

.echo-sidebar-card .echo-article-date {
    font-size: 0.8rem;
    margin-top: auto;
}

.echo-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
}

/* Blog Section Responsive */
@media (max-width: 768px) {
    .echo-blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .echo-blog-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .echo-seventh-section {
        padding: 80px 0;
    }
    
    .echo-article-image {
        height: 200px;
    }
    
    .echo-sidebar-card {
        flex-direction: column;
        text-align: center;
    }
    
    .echo-sidebar-card .echo-article-image {
        width: 100%;
        height: 150px;
    }
    
    .echo-sidebar-placeholder {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .echo-blog-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .echo-seventh-section {
        padding: 60px 0;
    }
    
    .echo-article-content {
        padding: 20px;
    }
    
    .echo-article-title a {
        font-size: 1.2rem;
    }
}
