.blog-card {
    display: flex;
    width: 100%;
    height: 540px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.00);
    transition: 0.5s;
}


.blog-card:is(:hover, :focus-visible, :focus-within) {
    border-radius: 24px;
    border: 1px solid rgba(67, 158, 239, 0.25);
    box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.20);
    scale: 1.02;
    cursor: pointer;
}



.blog-image-container {
    width: 100%;
    height: 230px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.blog-plan-container {
    display: flex;
    height: 32px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 66px;
    border: 1px solid var(--neutral-12);
    color: #DAE3F1;
    text-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
    font-size: 14px;
    width: auto;
}

.blog-plan-container.premium {
    border: 1px solid rgba(13, 94, 152, 0.25);
    background: #0C5D98;
}

.premium-locked-icon {
    width: 18px;
    height: 18px;
}

.blog-topic-text {
    margin-top: 24px;
    color: var(--blue-04);
    font-size: 12px;
    line-height: 12px;
    letter-spacing: -1%;
}

.blog-title {
    color: #DAE3F1;
    font-size: 22px;
    font-weight: var(--semiBold);
    line-height: 32px;
    letter-spacing: -1%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}


.blog-description {
    margin-top: 8px;
    color: var(--neutral-06);
    font-size: 14px;
    font-weight: var(--regular);
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-line-separator {
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    height: 1px;
    margin-top: auto;
}

.blog-details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
    width: 100%;
}

.publish-date-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    color: #C1C6D7;
    font-size: 12px;
    line-height: 16px;
}

.calendar-icon-blog {
    width: 16px;
    height: 16px;
}

.read-time {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    color: #C1C6D7;
    font-size: 12px;
    line-height: 16px;
}

.read-clock {
    width: 16px;
    height: 16px;
}