/* --- DT Coaching Grid Styles (v1.3 - Dynamic Colors) --- */

.dt-coaching-grid-section {
    padding: 80px 20px;
    background-color: #fff;
    overflow: hidden;
}

.dtcg-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Reverse Layout Class */
.dtcg-container.dtcg-reverse {
    flex-direction: row-reverse;
}

/* --- Left Column --- */
.dtcg-col-content {
    flex: 1;
    max-width: 600px;
}

.dtcg-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 15px;
}

.dtcg-headline {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.dtcg-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

/* Grid Cards */
.dtcg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.dtcg-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.dtcg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dtcg-card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.dtcg-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin: 0;
}

/* --- Buttons Wrapper --- */
.dtcg-buttons-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Base Button */
.dtcg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Primary Button (Solid) */
.dtcg-btn-primary {
    background-color: var(--dtcg-btn1-bg, #ef4444);
    color: var(--dtcg-btn1-text, #ffffff);
    border-color: var(--dtcg-btn1-bg, #ef4444);
}
.dtcg-btn-primary:hover {
    filter: brightness(90%); /* Universal darkening for hover */
}

/* Secondary Button (Outline or Solid based on user pick) */
.dtcg-btn-secondary {
    background-color: var(--dtcg-btn2-bg, transparent);
    color: var(--dtcg-btn2-text, #ef4444);
    border-color: var(--dtcg-btn2-text, #ef4444);
}
.dtcg-btn-secondary:hover {
    filter: brightness(95%);
    background-color: rgba(0,0,0,0.03); /* Slight grey on hover if transparent */
}

/* --- Right Column (Visuals) --- */
.dtcg-col-images {
    flex: 1;
    position: relative;
}

.dtcg-image-bg {
    position: relative;
    width: 100%;
    padding-bottom: 80%; /* Aspect ratio */
    border-radius: 30px;
    overflow: visible;
    background-color: var(--dtcg-blob-bg, #f8f9fa); /* Uses variable now */
}

.dtcg-img-1 {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 55%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1;
}

.dtcg-img-2 {
    position: absolute;
    bottom: -30px;
    left: 40px;
    width: 55%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .dtcg-container {
        flex-direction: column;
        gap: 60px;
    }
    /* Reset reverse on tablet */
    .dtcg-container.dtcg-reverse {
        flex-direction: column;
    }
    
    .dtcg-col-content {
        max-width: 100%;
    }
    .dtcg-image-bg {
        padding-bottom: 70%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .dtcg-headline { font-size: 2.2rem; }
    .dtcg-grid { grid-template-columns: 1fr; } 
    
    .dtcg-buttons-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .dtcg-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .dtcg-img-1 { top: -20px; right: 10px; width: 60%; }
    .dtcg-img-2 { bottom: -20px; left: 10px; width: 60%; }
}