/* ===== Smart Read Also – Frontend Styles ===== */
.sra-read-also {
    margin: 28px 0;
    font-family: inherit;
    clear: both;
}

/* BOX STYLE */
.sra-style-box {
    background: var(--sra-bg, #f0f7ff);
    border-left: 4px solid var(--sra-border, #3b82f6);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* LIST STYLE */
.sra-style-list {
    border: 1px solid var(--sra-border, #3b82f6);
    border-radius: 6px;
    padding: 14px 18px;
    background: var(--sra-bg, #f0f7ff);
}

/* CARD STYLE */
.sra-style-card {
    background: var(--sra-bg, #f0f7ff);
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--sra-border, #3b82f6);
    border-radius: 8px;
    padding: 16px;
}

/* MINIMAL STYLE */
.sra-style-minimal {
    border-left: 3px solid var(--sra-border, #3b82f6);
    padding-left: 14px;
    background: transparent;
}

/* TITLE */
.sra-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--sra-border, #3b82f6);
    margin-bottom: 10px;
}

/* LIST */
.sra-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sra-item {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(0,0,0,.08);
}

.sra-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* LINK */
.sra-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: color .2s;
}

.sra-link:hover .sra-post-title {
    color: var(--sra-border, #3b82f6);
    text-decoration: underline;
}

/* THUMBNAIL (card style) */
.sra-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.sra-post-title {
    font-size: 15px;
    line-height: 1.4;
}

.sra-style-list .sra-post-title::before {
    content: "→ ";
    color: var(--sra-border, #3b82f6);
}

/* INTERNAL LINK */
a.sra-internal-link {
    color: var(--sra-border, #3b82f6);
    text-decoration: underline dotted;
    font-weight: 600;
    transition: color .2s;
}

a.sra-internal-link:hover {
    text-decoration: underline solid;
}

@media (max-width: 600px) {
    .sra-style-card .sra-item {
        flex-direction: column;
    }
    .sra-thumb img {
        width: 100%;
        height: auto;
    }
}
