/* Three Blocks Links Styles */
.three-blocks-links {
    padding: 30px 0;
    margin: 0 90px 0 90px;
}

.link-block-card {
    background-color: #232f3e;
    color: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.link-block-card:hover {
    background-color: #00AFEF;
    /* Walmart Blue Theme on hover */
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(35, 11, 158, 0.2);
    border-color: #84C44C;
    /* Green border highlight */
}

.block-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 24px;
    color: #84C44C;
    /* Green accents */
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.link-block-card:hover .block-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.block-content-text {
    flex-grow: 1;
}

.block-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.block-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 991px) {
    .link-block-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .block-icon-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .block-title {
        font-size: 14px;
        margin-bottom: 0;
    }

    .block-desc {
        display: none;
    }
}

@media (max-width: 767px) {
    .three-blocks-links {
        padding: 20px 0;
    }

    .link-block-card {
        margin-bottom: 15px;
    }
}