/* =============================================
   Amazing Related Posts — style.css
   ============================================= */

.arp-wrapper {
    margin: 40px 0;
    border: 1.5px solid var(--arp-border, #c8e6c9);
    border-radius: 10px;
    overflow: hidden;
    font-family: inherit;
}

.arp-header {
    background-color: var(--arp-header-bg, #e8f5e9);
    color: #2e7d32;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 18px;
    border-bottom: 1.5px solid var(--arp-border, #c8e6c9);
    letter-spacing: 0.3px;
}

.arp-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: #222;
    background: #fff;
    border-bottom: 1px solid var(--arp-border, #c8e6c9);
    transition: background 0.18s;
}

.arp-item:last-child {
    border-bottom: none;
}

.arp-item:hover {
    background: #f9fbe7;
    color: #1b5e20;
}

.arp-thumb {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.arp-no-thumb {
    width: 72px;
    height: 54px;
    background: #e0e0e0;
    border-radius: 6px;
    flex-shrink: 0;
}

.arp-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
}

.arp-arrow {
    color: var(--arp-arrow, #e64a19);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 8px;
}

@media (max-width: 480px) {
    .arp-thumb,
    .arp-no-thumb {
        width: 56px;
        height: 42px;
    }
    .arp-title {
        font-size: 0.88rem;
    }
}
