/* Shared layout styles for Puzzles pages (aligns with calculators/car-loan-calculator.html) */

* {
    font-family: 'Inter', sans-serif !important;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Breadcrumb styles */
.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Card Components (match calculator template) */
.main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 1.25rem;
}

@media (min-width: 768px) {
    .main-card {
        padding: 2rem;
    }
}

/* Ad Container */
.ad-container {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .ad-container {
        padding: 30px;
    }
}

/* Footer hover parity */
footer a {
    color: inherit;
}

footer a:hover {
    text-decoration: underline;
}
