/* ============================================================
   Block: Services
   ============================================================ */
.dryve-services {
    padding: 80px 0;
    background: #fff;
}

.dryve-services-inner {
    max-width: var(--dryve-site-width, 1400px);
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.dryve-services-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dryve-services-title {
    /* font-size: 36px; -- inherited from branding */
    /* font-weight: 700; -- inherited from branding */
    margin-bottom: 16px;
}

.dryve-services-intro {
    font-size: 18px;
    color: #666;
}

.dryve-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.dryve-service-card {
    background: #f9f9f9;
    padding: 32px;
    border-radius: var(--dryve-image-radius, 8px);
    transition: transform 0.3s;
}

.dryve-service-card:hover {
    transform: translateY(-5px);
}

.dryve-service-title {
    /* font-size: 20px; -- inherited from branding */
    /* font-weight: 600; -- inherited from branding */
    margin: 0 0 12px;
}

.dryve-service-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.dryve-service-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--dryve-primary, #004AAD);
}