/* Blog cards (resources/views/sections/blog.blade.php) */
.blog-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.blog-box img {
    width: 100%;
    height: auto;
    aspect-ratio: 500 / 263;
    object-fit: cover;
    border-radius: 0;
}

.blog-box .blog-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 0;
}

.blog-box .blog-txt span:not(.rm-arrow) {
    display: block;
    padding: 0;
    margin: 0 0 8px !important;
    font-size: .875rem;
    color: #5f6b76;
}

.blog-box .blog-txt p {
    flex: 1;
    min-height: 0;
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.55;
}

.blog-box .blog-txt a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    align-self: flex-start;
    font-style: normal;
    font-size: .9375rem;
}
