/* Digicells Flight Booking — Partner Logos carousel
   Self-contained styles, namespaced under .dcfb-partners-section,
   cannot affect any other part of the plugin's front end. */
   


.dcfb-partners-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: inherit;
}

.dcfb-partners-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 0 26px;
    color: #1a1a2e;
}

.dcfb-partners-empty {
    text-align: center;
    color: #888;
}

.dcfb-partners-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dcfb-partners-viewport {
    flex: 1;
    overflow: hidden;
}

.dcfb-partners-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    will-change: transform;
}

.dcfb-partner-logo {
    /* width is set at runtime by popular-destinations.js's sibling script
       (partner-logos.js) via inline style, so exactly 4 (desktop) / 2
       (mobile) logos are visible in the viewport at once. */
    flex: 0 0 auto;
    height: 100px;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.dcfb-partner-logo:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.dcfb-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(15%);
}

.dcfb-partner-arrow {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, transform 0.15s ease;
    z-index: 3;
}
.dcfb-partner-arrow:hover {
    background: #222;
    transform: scale(1.06);
}

@media (max-width: 600px) {
    .dcfb-partners-section { padding: 28px 14px; }
    .dcfb-partners-title { font-size: 1.25em; margin-bottom: 18px; }
    .dcfb-partner-logo { height: 74px; padding: 10px; }
    .dcfb-partner-arrow { width: 32px; height: 32px; font-size: 16px; }
}
