/*
 Theme Name: Acquire 2025 Child Theme
 Description: A Divi child theme with a custom Acquire 2025 Page Template.
 Template: Divi
 Version: 1.0
*/

/* --- LAYOUT STYLES --- */
.acq-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

/* Hero */
.acq-hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #0056b3; /* Brand Blue */
    color: white;
    margin-bottom: 40px;
    border-radius: 8px;
}
.acq-hero h1 { 
    color: white !important; 
    font-size: 2.5rem; 
    text-transform: uppercase;
    line-height: 1.2;
}

/* Mission */
.acq-mission {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 60px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Grid */
.acq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
    background: #f4f8fb;
    padding: 40px;
    border-radius: 12px;
}
.acq-stat-box { text-align: center; }
.acq-stat-num { 
    display: block; 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: #17a2b8; /* Teal Accent */
}

/* Sessions Grid */
.acq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.acq-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.acq-badge {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    align-self: flex-start;
}
.acq-card h3 { 
    margin-top: 0; 
    font-size: 1.2rem; 
    color: #333;
}
.acq-speaker {
    font-weight: bold;
    color: #555;
    margin-top: 10px;
}
.acq-quote {
    margin-top: auto;
    background: #f0f9ff;
    border-left: 4px solid #17a2b8;
    padding: 10px;
    font-style: italic;
    font-size: 0.9rem;
}

/* Footer CTA */
.acq-footer {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: #0056b3;
    color: white;
    border-radius: 12px;
}
.acq-footer a { color: #fff; text-decoration: underline; }