/* Custom CSS for fitness blog */
h5 {
    font-size: 1.2em !important;
    font-weight: 500 !important;
    margin: 12px 0 8px 0 !important;
    line-height: 1.3 !important;
    color: #333 !important;
}

h6 {
    font-size: 1.1em !important;
    font-weight: 500 !important;
    margin: 10px 0 6px 0 !important;
    line-height: 1.3 !important;
    color: #444 !important;
}

/* Ensure consistency in articles */
.entry-content h5,
.entry-content h6 {
    font-family: inherit !important;
}

/* Contacts section styling - COMPACT VERSION */
.contacts-section {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    font-size: 0.9em;
}

.contacts-section h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    padding: 12px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.contact-item h4 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #0073aa;
}

.contact-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.contact-item li {
    margin-bottom: 6px;
    line-height: 1.4;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 1px;
    transition: all 0.2s ease;
    font-size: 0.9em;
}

.contact-item a:hover {
    color: #0073aa;
    border-bottom-color: #0073aa;
}

.contact-note {
    margin-top: 15px;
    padding: 12px;
    background: #e7f3ff;
    border-radius: 6px;
    border-left: 3px solid #0073aa;
    font-size: 0.85em;
}

.contact-note p {
    margin: 0;
    color: #555;
}
