/* Section */

.fwj-category-section {
    background: #0c0c0c;
    padding: 80px 24px 100px;
    color: #fff;
}

.fwj-category-heading {
    width: min(1200px, 100%);
    margin: 0 auto 46px;
}

.fwj-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #c8a652;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.fwj-category-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.fwj-category-heading p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.75;
}

/* Grid */

.fwj-category-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

/* Card */

.fwj-category-card {
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.fwj-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 166, 82, 0.45);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

/* Exactly two representative images */

.fwj-category-images {
    display: grid;
    grid-template-columns: 58% 42%;
    height: 285px;
    background: #080808;
}

.fwj-category-image {
    position: relative;
    overflow: hidden;
}

.fwj-category-image:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.fwj-category-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fwj-category-card:hover .fwj-category-image img {
    transform: scale(1.035);
}

.fwj-image-label {
    position: absolute;
    left: 14px;
    bottom: 13px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

/* Body */

.fwj-category-body {
    padding: 24px 25px 25px;
}

.fwj-category-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 13px;
}

.fwj-category-title-row h3 {
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}

.fwj-pax {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8a652;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.fwj-pax img {
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.fwj-category-description {
    min-height: 52px;
    margin: 0;
    color: rgba(255, 255, 255, 0.59);
    font-size: 14px;
    line-height: 1.7;
}

.fwj-category-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.fwj-worldwide {
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
}

.fwj-category-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c8a652 !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.fwj-category-cta:hover {
    color: #fff !important;
}

.fwj-category-cta span {
    font-size: 18px;
}

/* Empty */

.fwj-empty-categories {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 80px 30px;
    text-align: center;
    background: #151515;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.55);
}

/* Tablet */

@media (max-width: 900px) {
    .fwj-category-grid {
        grid-template-columns: 1fr;
    }

    .fwj-category-images {
        height: 320px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .fwj-fleet-hero {
        min-height: 340px;
    }

    .fwj-fleet-hero-content {
        width: calc(100% - 32px);
        padding-bottom: 42px;
    }

    .fwj-category-section {
        padding: 58px 16px 70px;
    }

    .fwj-category-images {
        grid-template-columns: 1fr 1fr;
        height: 205px;
    }

    .fwj-category-body {
        padding: 20px;
    }

    .fwj-category-title-row {
        display: block;
    }

    .fwj-pax {
        margin-top: 9px;
    }

    .fwj-category-description {
        min-height: 0;
    }

    .fwj-category-footer {
        align-items: flex-end;
    }

    .fwj-worldwide {
        max-width: 110px;
    }
}
