.doctor-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: var(--color-neutral-1);
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(181, 51, 36, 0.05);
}

.info-card h2 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.info-card p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.appointment-button {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    border: none;
    background: var(--color-main-1);
    color: white;
    font-family: var(--font-claims);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-button:hover {
    background: var(--color-main-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 51, 36, 0.2);
}

@media (max-width: 768px) {
    .doctor-image-placeholder {
        aspect-ratio: 1 / 1;
    }
}