.from-blog-home {
    padding: 18px 0 42px;
}

.from-blog-home__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.from-blog-home__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
}

.from-blog-home__actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.from-blog-home__create {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.from-blog-home__create:hover {
    color: #111827;
    border-color: #d1d5db;
}

.from-blog-home__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff4d5f;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.from-blog-home__link:hover {
    color: #ff3349;
}

.from-blog-home__panel {
    background: #F6F7FF;
    border-radius: 16px;
    padding: 20px;
}

.from-blog-home__grid {
    row-gap: 24px;
}

.home-blog-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-blog-card__media {
    position: relative;
    height: 190px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
    margin-bottom: 10px;
}

.home-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-blog-card__author {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
}

.home-blog-card__author img {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

.home-blog-card__author span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
}

.home-blog-card__author::before {
    content: "";
    position: absolute;
    inset: -8px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0));
    z-index: -1;
    border-radius: 14px;
}

.home-blog-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: #fff;
    flex: 0 0 auto;
}

.home-blog-card__body {
    padding: 0 4px;
}

.home-blog-card__body .home-blog-card__excerpt{
    font-size: 14px;
    line-height: 20px;
    color: #0A0D14;
    font-weight: 400;
}

.home-blog-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.home-blog-card__title {
    font-size: 16px;
    line-height: 24px;
    color:#0A0D14;
    font-weight: 600;
    margin: 0;
}

.home-blog-card__arrow {
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1;
    color: #111827;
    transform: rotate(-45deg);
}


.home-blog-card__chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.home-blog-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    padding: 4px 12px;
    border: 1px solid #d3d8e7;
    border-radius: 999px;
    background: #fff;
    color: #667085;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}

@media (max-width: 991px) {
    .from-blog-home__panel {
        padding: 18px;
    }

    .home-blog-card__media {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .from-blog-home__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .from-blog-home__actions {
        width: 100%;
        justify-content: space-between;
    }

    .from-blog-home__panel {
        border-radius: 20px;
        padding: 14px;
    }

    .home-blog-card__media {
        height: 210px;
    }
}