/* Home Page Specific Styles */

.news-ticker-container.container {
    margin-top: 1rem;
}

.news-ticker-static {
    text-align: center;
}

.news-ticker-static .news-item {
    display: inline-block;
}

/* Philosophy Section */
.philosophy {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    border-top: 1px solid var(--surface-border);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.phi-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
}

.phi-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Key Projects Section */
.projects-section {
    margin-bottom: 8rem;
}

.project-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-card h3 {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.project-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Mobile Overrides for Home Page */
@media (max-width: 768px) {
    .philosophy {
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .projects-section {
        margin-bottom: 4rem;
    }

    .projects-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
}
