/* === BLOCK === */
.boats-block {
    margin-top: 1.5rem;
}

/* === HEADER === */
.boats-header {
    margin-bottom: 1rem;
}

.boats-title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .boats-title {
        font-size: 1.25rem;
    }
}

/* === SLIDER === */
.boats-slider {
    margin-top: -0.5rem;
    margin-left: -0.5rem;
}

.boats-splide .splide__slide {
    padding: 0.5rem;
    height: auto;
}

/* === CARD === */
.boat-card {
    cursor: pointer;
}

.boat-card-image {
    position: relative;
    padding-top: 65%;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border-radius: 0.75rem;
}

.boat-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.boat-card:hover .boat-card-image img {
    transform: scale(1.05);
}

.boat-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.boat-card-title a {
    color: inherit;
    text-decoration: none;
}

.boat-card-rating {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.boat-card-rating span {
    margin-left: 0.25rem;
    font-weight: 600;
    opacity: .6;
}

/* === PRICE === */
.boat-card-price {
    font-size: 0.75rem;
    font-weight: 600;
}

.boat-card-price strong {
    font-size: 1.125rem;
    font-weight: 800;
}

/* === FOOTER === */
.boats-footer {
    text-align: center;
    margin-top: 1rem;
}

.boats-more-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 2px solid #0B1B48;
    color: #0B1B48;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.boats-more-link:hover {
    background: #0B1B48;
    color: #fff;
}