.tb-blog-page {
    background: #ffffff;
}

.tb-blog-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.tb-blog-hero {
    padding: 72px 0 40px;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

.tb-blog-eyebrow {
    margin: 0 0 12px;
    color: #FC7700;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tb-blog-title {
    max-width: 820px;
    margin: 0;
    color: #111111;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.tb-blog-intro {
    max-width: 760px;
    margin: 22px 0 0;
    color: #555555;
    font-size: 18px;
    line-height: 1.65;
}

.tb-blog-list-section {
    padding: 48px 0 80px;
}

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

.tb-blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.tb-blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3f3f3;
}

.tb-blog-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.tb-blog-card-date {
    margin: 0 0 10px;
    color: #777777;
    font-size: 14px;
    line-height: 1.4;
}

.tb-blog-card-title {
    margin: 0;
    color: #111111;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.tb-blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.tb-blog-card-title a:hover,
.tb-blog-card-title a:focus {
    color: #FC7700;
}

.tb-blog-card-excerpt {
    margin: 14px 0 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.65;
}

.tb-blog-card-link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 18px;
    color: #FC7700;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.tb-blog-card-link:hover,
.tb-blog-card-link:focus {
    text-decoration: underline;
}

.tb-blog-empty {
    margin: 0;
    color: #555555;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 960px) {
    .tb-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tb-blog-container {
        width: min(100% - 24px, 1120px);
    }

    .tb-blog-hero {
        padding: 48px 0 28px;
    }

    .tb-blog-list-section {
        padding: 32px 0 56px;
    }

    .tb-blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tb-blog-card-body {
        padding: 20px;
    }

    .tb-blog-card-title {
        font-size: 20px;
    }

    .tb-blog-intro {
        font-size: 16px;
    }
}
