/**
 * Focus Areas Widget Styles
 */

.ms-focus-areas-wrapper {
    width: 100%;
}

.ms-focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.ms-focus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.ms-focus-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: inherit;
    transition: all 0.3s ease;
}

.ms-focus-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1258CA;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.ms-focus-item:hover .ms-focus-icon {
    transform: scale(1.001);
}

.ms-focus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.ms-focus-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.ms-focus-label {
    margin-top: 15px;
    font-size: 16px;
    color: #333333;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
    margin: 15px 0 0 0;
    transition: color 0.3s ease;
}

.ms-focus-link:hover .ms-focus-label {
    color: #1258CA;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .ms-focus-areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ms-focus-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ms-focus-circle {
        width: 120px;
        height: 120px;
    }

    .ms-focus-icon {
        width: 50px;
        height: 50px;
    }

    .ms-focus-icon img {
        width: 50px;
        height: 50px;
    }

    .ms-focus-label {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .ms-focus-areas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ms-focus-circle {
        width: 100px;
        height: 100px;
    }

    .ms-focus-icon {
        width: 45px;
        height: 45px;
    }

    .ms-focus-icon img {
        width: 45px;
        height: 45px;
    }

    .ms-focus-label {
        font-size: 13px;
        margin-top: 10px;
    }
}
