/* =========================================================
   START WEB — BLOG
   Dépend de portfolio.css pour :
   .startweb-project-container / .startweb-project-hero /
   .startweb-single-category / .startweb-project-intro /
   .startweb-archive-grid-section / .startweb-archive-pagination /
   .startweb-portfolio-empty / .startweb-no-image
   ========================================================= */

.startweb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px 32px;
}

.startweb-blog-card {
    min-width: 0;
}

.startweb-blog-link {
    display: block;
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   THUMBNAIL
   ========================================================= */

.startweb-blog-thumb {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 16px;

    background: #f4f4f5;
}

.startweb-blog-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.startweb-blog-link:hover .startweb-blog-thumb img {
    transform: scale(1.04);
}


/* =========================================================
   INFO
   ========================================================= */

.startweb-blog-info {
    padding-top: 20px;
}

.startweb-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: #777;
}

.startweb-blog-meta span + span::before {
    content: "•";

    margin-right: 12px;

    color: #bbb;
}

.startweb-blog-info h3 {
    margin: 0 0 10px;
    font-size: 22px !important;
    line-height: 1.15 !important;
    font-weight: 500 !important;
    letter-spacing: -.02em !important;
    color: #171717 !important;
}
.startweb-blog-excerpt {
    margin: 0 0 14px;

    font-size: 15px;
    line-height: 1.55;

    color: #555;
}

.startweb-blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 600;

    color: #111;
}

.startweb-blog-readmore span {
    transition: transform .3s ease;
}

.startweb-blog-link:hover .startweb-blog-readmore span {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .startweb-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 28px;
    }
}

@media (max-width: 600px) {

    .startweb-blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .startweb-blog-info h3 {
        font-size: 20px;
    }
}