/* --- SECTION STYLES --- */
.dsh-gs-section {
    padding: 50px 0; /* py-20 */
    background-color: #f9fafb;
}

.dsh-gs-container {
    max-width: 1380px; /* max-w-7xl */
    margin: 0 auto;
    padding: 0 16px; /* px-4 */
}

@media (min-width: 768px) {
    .dsh-gs-container {
        padding: 0 48px; /* md:px-12 */
    }
}

/* --- HEADER STYLES --- */
.dsh-gs-header {
    text-align: left;
    margin-bottom: 2rem; /* mb-12 */
}

.dsh-gs-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: #111827; /* gray-900 */
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .dsh-gs-title {
        font-size: 2.25rem; /* text-4xl */
    }
}

.dsh-gs-subtitle {
    color: #4b5563; /* gray-600 */
    max-width: 670px; /* max-w-2xl */
    font-size: 1.125rem; /* text-lg */
    line-height: 1.6;
}

/* --- LAYOUT STYLES --- */
.dsh-gs-main-layout {
    display: flex;
    flex-direction: column;
    gap: 48px; /* gap-12 */
}

@media (min-width: 1024px) {
    .dsh-gs-main-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    .dsh-gs-features-column {
        width: 60%; /* lg:w-3/5 */
    }
    .dsh-gs-image-column {
        width: 40%; /* lg:w-2/5 */
    }
}

/* --- FEATURES GRID & CARDS --- */
.dsh-gs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .dsh-gs-grid {
        grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    }
}

.dsh-gs-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 180px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.dsh-gs-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dsh-gs-icon-box {
    width: 56px;
    height: 56px;
    background-color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.2);
}

.dsh-gs-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.dsh-gs-card-text {
    color: #6b7280; /* gray-500 */
    font-size: 0.875rem;
    line-height: 1.6;
}

/* --- BUTTON STYLES --- */
.dsh-gs-video-btn {
    background-color: #ef4444;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.2);
}

.dsh-gs-video-btn:hover {
    background-color: #dc2626;
}

/* --- IMAGE STYLES --- */
.dsh-gs-featured-img {
    width: 100%;
    height: 600px;
    object-fit: none;
    object-position: center;
    border-radius: 20px; /* rounded-[2.5rem] */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


.gs_logo{
    width: 40px;
    height: 40px;
}