.srkelb-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 36px 34px;
    background: #1a1612;
    color: #ffffff;
    isolation: isolate;
}

.srkelb-card::before,
.srkelb-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    transition: background .45s ease, opacity .45s ease;
}

.srkelb-card::before {
    background: #0a0a0ac7;
}

.srkelb-card::after {
    background: linear-gradient(180deg, rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.28) 48%, rgba(10,10,10,0.88) 100%);
}

.srkelb-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(.22,.61,.36,1), filter .6s ease;
    z-index: 0;
}

.srkelb-card:hover .srkelb-image {
    transform: scale(1.06);
}

.srkelb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    text-align: left;
}

.srkelb-tag {
    display: block;
    margin: 0 0 12px;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.76);
}

.srkelb-title {
    margin: 0 0 2px;
    font-family: 'Cinzel', 'Trajan Pro', serif;
    font-size: clamp(24px, 2.3vw, 34px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: .005em;
    color: #ffffff;
}

.srkelb-subtitle {
    margin: 0 0 18px;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: clamp(21px, 2vw, 30px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.08;
    color: rgba(255,255,255,.9);
}

.srkelb-description {
    margin: 0 0 24px;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255,255,255,.82);
}

.srkelb-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: #ffffff;
    text-decoration: none !important;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .24em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    transition: gap .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease, color .35s ease;
}

.srkelb-link .srkelb-arrow {
    display: inline-block;
    margin-left: 2px;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: inherit;
    transition: transform .35s cubic-bezier(.22,.61,.36,1), color .35s ease;
}

.srkelb-card:hover .srkelb-link {
    gap: 16px;
    border-bottom-color: currentColor;
}

.srkelb-card:hover .srkelb-link .srkelb-arrow {
    transform: translate(3px, -3px);
}

@media (max-width: 1024px) {
    .srkelb-card {
        min-height: 420px;
        padding: 32px 28px;
    }
}

@media (max-width: 767px) {
    .srkelb-card {
        min-height: 360px;
        padding: 28px 22px;
    }

    .srkelb-content {
        max-width: 100%;
    }

    .srkelb-description {
        font-size: 13.5px;
    }
}
