/*
Crypto Price Main Page Styles
Only for the main /price page, not child pages
Template: page-crypto-price.php
*/

/* Header Section Styles */
.crypto-price-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color, #e0e0e0);
}

.crypto-price-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--text-heading, #1a1a1a);
    margin-bottom: 25px;
    line-height: 1.3;
}

.crypto-price-description {
    font-size: 1.2em;
    line-height: 1.9;
    color: var(--text-body, #4a4a4a);
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

/* Responsive Styles for Header */
@media (max-width: 768px) {
    .crypto-price-header {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }
    
    .crypto-price-title {
        font-size: 2.2em;
        margin-bottom: 20px;
    }
    
    .crypto-price-description {
        font-size: 1.1em;
        line-height: 1.8;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .crypto-price-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    
    .crypto-price-description {
        font-size: 1em;
        line-height: 1.7;
    }
}