/* --- PREMIUM STYLE FOR SUGGESTION CARDS --- */
.suggestions-container {
    border-radius: 12px;
    padding: 2rem;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6); /* subtle background */
}

.suggestions-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1e3a8a; /* deep premium blue */
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.suggestions-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #d90429, #ef233c); /* premium red gradient */
    border-radius: 2px;
}

.suggestion-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.suggestion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.suggestion-card-link {
    text-decoration: none;
    color: inherit;
}

.suggestion-card-content {
    padding: 1.5rem;
}

.suggestion-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937; /* dark gray for titles */
    margin-bottom: 0.5rem;
}

.suggestion-card-date {
    font-size: 0.85rem;
    color: #6b7280; /* muted gray */
    margin-bottom: 0;
}

.suggestion-card-footer {
    background: linear-gradient(to right, #d90429, #ef233c); /* premium red gradient */
    padding: 0.85rem 1.25rem;
    text-align: right;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.suggestion-card-footer:hover {
    background: linear-gradient(to right, #ffd60a, #ffb703); /* gold hover effect */
    color: #111827; /* dark text on hover */
}

.suggestion-card-footer .fa-arrow-right {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.suggestion-card-footer:hover .fa-arrow-right {
    transform: translateX(6px);
}
/* --- END PREMIUM STYLE --- */
