/* ==========================================================
   STYLE SECTION 9 - dg9.css (Makna Logo)
   ========================================================== */

.dg-logo-meaning-section {
    background-color: var(--surface-white);
    padding: 6rem 1rem;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-body);
}

/* Logo Display Tengah */
.dg-logo-display-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.dg-logo-circle-bg {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(200, 155, 60, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 3px solid var(--border-line);
}

.dg-main-logo-img {
    max-width: 120px;
    height: auto;
}

/* Grid 3 Kolom Makna Logo */
.dg-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.dg-logo-card {
    background: var(--bg-cream);
    border: 1px solid var(--border-line);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dg-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px var(--shadow-hover-color);
    border-color: var(--primary-red);
    background: var(--surface-white);
}

.dg-logo-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.dg-logo-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-line);
}

.dg-logo-list {
    list-style-type: disc;
    padding-left: 1.2rem;
    margin: 0;
    color: var(--text-body);
    font-size: 0.925rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 992px) {
    .dg-logo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}