/* =========================================
   DESIGN CENTRE EVENTS
========================================= */

.dc-events-section {
    padding: 28px 0 70px;
    background: #ffffff;
}

.dc-events-section .container {
    width: 100%;
    max-width: 1420px;
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================
   TOP AREA
========================================= */

.dc-events-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.dc-events-top h3 {
    margin: 0 0 3px;
    color: #222;
    font-size: 20px;
    font-weight: 500;
}

.dc-events-top p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.dc-event-update {
    padding: 8px 12px;
    border: 1px solid #cbd8ea;
    color: #1156b5;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
}

.dc-event-update i {
    margin-right: 5px;
}


/* =========================================
   FEATURED EVENT
========================================= */

.dc-featured-event {
    display: flex;
    width: 100%;
    min-height: 325px;
    border: 1px solid #cbd8ea;
    background: #ffffff;
}


/* LEFT IMAGE */

.dc-event-slider {
    position: relative;
    width: 50%;
    height: 425px;
    overflow: hidden;
}

.dc-event-slider img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ARROWS */

.dc-event-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 38px;
    height: 42px;

    border: none;
    outline: none;

    background: rgba(7, 35, 72, 0.55);
    color: #ffffff;

    font-size: 25px;
    cursor: pointer;

    transition: 0.3s ease;
}

.dc-event-arrow:hover {
    background: #1156b5;
}

.dc-event-prev {
    left: 10px;
}

.dc-event-next {
    right: 10px;
}


/* DOTS */

.dc-event-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);

    display: flex;
    gap: 6px;
}

.dc-event-dots span {
    width: 9px;
    height: 9px;
    display: block;

    background: rgba(255,255,255,0.7);
    border-radius: 50%;

    cursor: pointer;
}

.dc-event-dots span.active {
    background: #ffffff;
}


/* =========================================
   FEATURED CONTENT RIGHT
========================================= */

.dc-featured-event-content {
    width: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px 25px;
}

.dc-event-label {
    display: block;

    margin-bottom: 8px;

    color: #b84a00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.dc-featured-event-content h2 {
    margin: 0 0 14px;

    color: #111;

    font-size: 25px;
    font-weight: 700;
}


/* META */

.dc-event-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 15px;

    color: #555;
    font-size: 14px;
}

.dc-event-meta i {
    margin-right: 5px;
    color: #1156b5;
}


/* DESCRIPTION */

.dc-featured-event-content p {
    margin: 0 0 18px;

    max-width: 520px;

    color: #666;

    font-size: 14px;
    line-height: 1.6;
}


/* READ EVENT */

.dc-read-event-btn {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 10px 16px;

    background: #d75b00;
    color: #ffffff !important;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none !important;

    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.14);

    transition: 0.3s ease;
}

.dc-read-event-btn:hover {
    background: #1156b5;
    color: #ffffff !important;
}


/* =========================================
   BOTTOM EVENT CARDS
========================================= */

.dc-event-grid {
    margin-top: 18px;
}

.dc-event-card {
    margin-bottom: 25px;

    border: 1px solid #d7dee8;

    background: #ffffff;

    transition: 0.3s ease;
}

.dc-event-card:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}


/* CARD IMAGE */

.dc-event-card > img {
    width: 100%;
    height: 250px;

    display: block;

    object-fit: cover;
}


/* CARD CONTENT */

.dc-event-card-body {
    padding: 13px 14px 15px;
}

.dc-event-card-body span {
    display: block;

    margin-bottom: 7px;

    color: #1156b5;

    font-size: 13px;
    font-weight: 600;
}

.dc-event-card-body span i {
    margin-right: 4px;
}

.dc-event-card-body h4 {
    margin: 0 0 11px;

    color: #111;

    font-size: 18px;
    font-weight: 700;
}


/* VIEW BUTTON */

.dc-event-card-body a {
    width: 100%;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border: 1px solid #1156b5;

    background: #ffffff;

    color: #1156b5 !important;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none !important;

    transition: 0.3s ease;
}

.dc-event-card-body a:hover {
    background: #1156b5;
    color: #ffffff !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .dc-featured-event {
        min-height: 290px;
    }

    .dc-event-slider {
        height: 290px;
    }

    .dc-featured-event-content {
        padding: 25px 20px;
    }

    .dc-event-card > img {
        height: 210px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .dc-events-section {
        padding: 25px 0 45px;
    }

    .dc-events-top {
        display: block;
    }

    .dc-event-update {
        display: inline-block;
        margin-top: 12px;
    }

    .dc-featured-event {
        display: block;
    }

    .dc-event-slider {
        width: 100%;
        height: 260px;
    }

    .dc-featured-event-content {
        width: 100%;
        padding: 22px 18px;
    }

    .dc-featured-event-content h2 {
        font-size: 23px;
    }

    .dc-event-card > img {
        height: auto;
    }
}