.edc-page-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 3rem 1rem 1rem;
}

    .edc-page-intro h1 {
        font-size: clamp(2.25rem, 5vw, 4rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        margin-bottom: 1rem;
    }

    .edc-page-intro p {
        font-size: 1.15rem;
        color: #555;
        line-height: 1.7;
    }

.edc-blog-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.edc-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.edc-blog-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .edc-blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 36px rgba(0,0,0,0.08);
    }

.edc-blog-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.edc-blog-card-body {
    padding: 1.5rem;
}

.edc-blog-card h2 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

    .edc-blog-card h2 a {
        color: #111;
        text-decoration: none;
    }

.edc-blog-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.edc-read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    border-bottom: 2px solid #111;
}
