.services-grid-widget {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 30px 0;
}

/* Header */
.services-grid-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.services-grid-title {
    color: var(--Default-White, #FFF);
    font-family: Urbanist, sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 115%;
    margin: 0;
}

/* Button */
.services-grid-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.services-grid-btn span {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid var(--Color-Palette-Yellow-Yellow-500, #FFC432);
    color: var(--Color-Palette-Yellow-Yellow-500, #FFC432);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    border-radius: 27px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.services-grid-btn::after {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--Color-Palette-Yellow-Yellow-500, #FFC432);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FFC432' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M14 5l7 7m0 0l-7 7m7-7H3'/%3E%3C/svg%3E");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.services-grid-btn:hover span {
    border-color: var(--Color-Palette-Blue-Blue-500, #25B1E1);
    color: var(--Color-Palette-Blue-Blue-500, #25B1E1);
}

.services-grid-btn:hover::after {
    border-color: var(--Color-Palette-Blue-Blue-500, #25B1E1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2325B1E1' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M14 5l7 7m0 0l-7 7m7-7H3'/%3E%3C/svg%3E");
}

/* Grid */
.services-grid {
    display: grid;
    gap: 24px;
}

.services-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.services-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Card */
.service-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background-color: var(--Gray-Gray-100, #161616);
    border-radius: 12px;
}

.service-card-title {
    color: var(--Default-White, #FFF);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
}

.service-card-description {
    color: var(--Gray-Gray-600, #999);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

/* Tag */
.service-card-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-card-tag img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-card-tag span {
    color: var(--Gray-Gray-600, #999);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid-title {
        font-size: 32px;
    }

    .services-grid.columns-3,
    .services-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-widget {
        gap: 32px;
    }

    .services-grid-title {
        font-size: 28px;
    }

    .services-grid.columns-2,
    .services-grid.columns-3,
    .services-grid.columns-4 {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }
}
