.seek-detail-card {
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(24, 65, 125, .09);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(19, 48, 91, .11);
}

.seek-detail-card .blog-img {
    overflow: hidden;
    max-height: 520px;
    border-radius: 18px;
    background: #eaf0f8;
}

.seek-detail-card .blog-img img {
    width: 100%;
    min-height: 300px;
    max-height: 520px;
    object-fit: cover;
}

.seek-detail-card .blog-meta > h2 {
    margin: 28px 0 20px;
    color: #14264a;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -.025em;
    line-height: 1.15;
}

.seek-rich-content {
    color: #50617c;
    font-size: 16px;
    line-height: 1.8;
}

.seek-rich-content p,
.seek-rich-content h1,
.seek-rich-content h2,
.seek-rich-content h3,
.seek-rich-content h4 {
    max-width: 920px;
}

.seek-rich-content img:not(.seek-rich-gallery img) {
    max-width: 100% !important;
    height: auto !important;
}

.seek-rich-gallery {
    display: grid;
    margin-top: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.seek-rich-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(29, 79, 150, .10);
    border-radius: 16px;
    background: #e9eff7;
    box-shadow: 0 10px 26px rgba(18, 47, 88, .12);
}

.seek-rich-gallery-item::after {
    content: "\f065";
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #1959c3;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 7px 18px rgba(7, 27, 60, .18);
    font-family: "Font Awesome 5 Free";
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .25s ease, transform .25s ease;
}

.seek-rich-gallery-item img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.seek-rich-gallery-item:hover img {
    transform: scale(1.045);
}

.seek-rich-gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .seek-detail-card {
        padding: 20px;
        border-radius: 18px;
    }

    .seek-detail-card .blog-img,
    .seek-detail-card .blog-img img {
        min-height: 220px;
        border-radius: 14px;
    }

    .seek-rich-content {
        font-size: 15px;
        line-height: 1.7;
    }

    .seek-rich-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .seek-rich-gallery-item img,
    .seek-rich-gallery-item::after {
        transition: none;
    }
}
