/* ------------------------------------------------
   DTG Split Section
------------------------------------------------ */
.dtg-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    background-color: #f5f3ef;
}

.dtg-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.dtg-content h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.dtg-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.btn-dtg {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 14px 32px;
    border: 2px solid #888;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #444;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-dtg:hover {
    background-color: #111;
    border-color: #111;
    color: #fff;
}

.dtg-image {
    overflow: hidden;
}

.dtg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ------------------------------------------------
   DTG Bottom Grid
------------------------------------------------ */
.dtg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 400px;
}

.dtg-grid-img {
    overflow: hidden;
    position: relative;
}

.dtg-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}

/* text panel on the right */
.dtg-grid-text {
    background-color: rgba(180, 160, 175, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 35px;
}

.dtg-grid-text p {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .dtg-split {
        grid-template-columns: 1fr;
    }

    .dtg-image {
        height: 300px;
    }

    .dtg-grid {
        grid-template-columns: 1fr;
    }

    .dtg-grid-img {
        height: 250px;
    }

    .dtg-content {
        padding: 40px 20px;
    }
}
