/* About page styles */

.about-content {
    background: #1a1d2e;
    border-radius: 1.25rem;
    padding: 2.5rem 3rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-md);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #c5c8d8;
}

.about-content p:last-of-type {
    margin-bottom: 0;
}

.about-content strong {
    color: #e8e9f0;
    font-weight: 600;
}

.about-content a {
    color: var(--bitcoin-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.about-content a:hover {
    color: #ffad42;
    text-decoration: underline;
}

/* ========== MOBILE ========== */
@media (max-width: 500px) {
    .about-content {
        border-radius: 0;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .about-content {
        padding: 1.5rem 1.25rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}
