/* Practical Info Page Styles */

.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1e3c72;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background: #f9fafb;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.info-card h3 {
    font-size: 16px;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-link {
    display: inline-block;
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #1e3c72;
    text-decoration: underline;
}

/* Emergency Contacts */
.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.emergency-card {
    background: #f9fafb;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.emergency-card.emergency {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a6 100%);
    border-color: #ff9800;
}

.emergency-card.emergency h3 {
    color: #d84315;
}

.emergency-card h3 {
    font-size: 14px;
    color: #1e3c72;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.large-text {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
}

.emergency-card p {
    font-size: 13px;
    color: #666;
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .emergency-contacts {
        grid-template-columns: 1fr;
    }

    .large-text {
        font-size: 24px;
    }
}
