/* SA Post List — Sabbir Ahmed */
.sa-pl {
    width: 100%;
}

.sa-pl__header {
    margin: 0 0 16px;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.sa-pl__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Card ── */
.sa-pl__card {
    position: relative;
    background: #ffffff;
    border: 0 solid transparent;
    border-radius: 16px;
    padding: 22px 24px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.sa-pl__card--clickable {
    cursor: pointer;
}

.sa-pl__overlay-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-decoration: none;
    color: transparent;
    border-radius: inherit;
}

.sa-pl__overlay-link:focus-visible {
    outline: 2px solid #1c57ff;
    outline-offset: 2px;
}

/* ── Title ── */
.sa-pl__title {
    margin: 0 0 12px;
    color: #000000;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.sa-pl__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sa-pl__card:hover .sa-pl__title,
.sa-pl__card:hover .sa-pl__title a {
    color: #1c57ff;
}

/* ── Meta ── */
.sa-pl__meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(17,17,17,0.55);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.sa-pl__sep {
    color: rgba(17,17,17,0.4);
    line-height: 1;
}

.sa-pl__date,
.sa-pl__rt {
    display: inline-flex;
    align-items: center;
}

@media (prefers-reduced-motion: reduce) {
    .sa-pl__card { transition: none; }
}

@media (max-width: 767px) {
    .sa-pl__card { padding: 16px 18px; }
    .sa-pl__title { font-size: 16px; }
    .sa-pl__header { font-size: 16px; }
}
