/**
 * Yacht Mentions Styles
 * Card layout: image on top, centered title, READ MORE button.
 *
 * @package Yacht_Mentions
 */

/* Section title */
.yacht-mentions-title {
    margin-bottom: 15px !important;
}

/* Space between cards */
.yacht-mentions-container .yacht-mentions-item {
    margin-bottom: 1.5rem;
}
.yacht-mentions-container .yacht-mentions-item:last-child {
    margin-bottom: 0;
}

/* Card: white, rounded corners, drop shadow */
.yacht-mentions-container .yacht-mentions-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.yacht-mentions-container .yacht-mentions-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

/* Image: full width at top, rounded top corners only */
.yacht-mentions-container .yacht-mentions-card-img-link {
    line-height: 0;
    border-radius: 12px 12px 0 0;
}

.yacht-mentions-container .yacht-mentions-card-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

/* Card body: centered; no top padding (flush with image) */
.yacht-mentions-container .yacht-mentions-card-body {
    padding: 0 1.25rem 1.75rem;
    text-align: center;
}

/* Title: large, black, centered, multi-line */
.yacht-mentions-container .yacht-mentions-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 1rem 0 1rem 0;
}

/* READ MORE button: dark blue, white text, rounded */
.yacht-mentions-container .yacht-mentions-card-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff !important;
    background-color: #1e3a5f;
    border: none;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.yacht-mentions-container .yacht-mentions-card-btn:hover,
.yacht-mentions-container .yacht-mentions-card-btn:focus {
    color: #fff !important;
    background-color: #2a4a7a;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 576px) {
    .yacht-mentions-container .yacht-mentions-card-body {
        padding: 1.25rem 1rem 1.5rem;
    }
    .yacht-mentions-container .yacht-mentions-card-title {
        font-size: 1.1rem;
    }
}

/* Print */
@media print {
    .yacht-mentions-container .yacht-mentions-card {
        box-shadow: none !important;
        break-inside: avoid;
    }
    .yacht-mentions-container .yacht-mentions-card-btn {
        display: none !important;
    }
}
