.suggested-link-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5deb3; /* بژ روشن */
    border: 1px solid #000;
    padding: 25px 15px;
    border-radius: 8px;
    gap: 15px;
    direction: rtl;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4); /* سایه زرشکی */
}

.slb-icon {
    font-size: 42px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.slb-subtitle {
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #000;
    width: 100%;
    text-align: center;
    padding-bottom: 8px;
}

.slb-link {
    font-size: 22px;
    font-weight: bold;
    color: #8b0000;
    text-decoration: none;
}

.slb-link:hover {
    text-decoration: underline;
}
