/* ===== Recommended Books - Lazada v1.1 ===== */
.rlb-wrapper {
    margin: 40px 0 24px;
    padding: 24px 20px 16px;
    border: 2px solid #f0c040;
    border-radius: 12px;
    background: #fffdf0;
    font-family: inherit;
}

/* กล่องกลางบทความ — ดูเนียนกว่า ขอบอ่อนกว่า */
.rlb-wrapper.rlb-mid {
    border-color: #ddd;
    background: #f9f9f9;
    border-style: dashed;
}

.rlb-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Grid: 4 คอลัมน์บนจอใหญ่, 2 คอลัมน์บนมือถือ */
.rlb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .rlb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .rlb-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* Card */
.rlb-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    color: inherit !important;
    background: #fff;
    border: 1px solid #e8e0c8;
    border-radius: 10px;
    padding: 12px 10px;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
}

.rlb-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transform: translateY(-3px);
    text-decoration: none !important;
}

.rlb-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 10px;
    background: #f5f5f5;
}

.rlb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rlb-title {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 10px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rlb-btn {
    display: inline-block;
    background: #f57722;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none !important;
    white-space: nowrap;
    margin-top: auto;
}

.rlb-card:hover .rlb-btn {
    background: #e06010;
}

.rlb-disclaimer {
    font-size: 0.72rem;
    color: #999;
    margin: 14px 0 0;
    text-align: right;
}
