/* Prescription Process Block */
.wp-block-peptidewebmd-prescription-block {
    background: white;
    padding: 60px 0;
}

.prescription-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.prescription-header {
    text-align: center;
    margin-bottom: 50px;
}

.prescription-header h2 {
    font-size: 36px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.prescription-header p {
    font-size: 15px;
    color: #666;
    font-weight: 300;
}

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

.prescription-step {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.prescription-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.prescription-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.prescription-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prescription-step h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.prescription-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .prescription-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .prescription-header h2 {
        font-size: 28px;
    }
}
