/*####################################################################################################################*/
/*Appilix Tools Page*/
/*####################################################################################################################*/


/* ===================================*/
/* Tools Hero Section                 */
/* ===================================*/
.appilix_tools_hero {
    padding: 12px;
    background: var(--surface_s3);
}

.appilix_tools_hero .hero_wrapper {
    text-align: center;
    border-radius: 20px;
    padding: 148px 0 100px 0;
    background-color: var(--gray_100);
    background-image: url("../images/theme/backgrounds/appilix_feature_page_pattern.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.appilix_tools_hero .hero_wrapper span {
    display: inline-block;
    font-size: var(--web_body_size_b4);
    line-height: var(--web_body_line_height_b4);
    font-weight: var(--font_weight_medium);
    color: var(--typography_dark_500);
    background: var(--green_primary_50);
    padding: 4px 16px;
    border-radius: 100px;
    border-left: 1px solid var(--surface_s3);
    border-right: 1px solid var(--surface_s3);
    border-top: 1px solid var(--surface_s3);
    box-shadow: 0 0 0 1px #E0EBE9;
}

.appilix_tools_hero .hero_wrapper .hero_title {
    margin: 20px auto 20px auto;
    font-size: var(--web_heading_size_h2);
    line-height: var(--web_heading_line_height_h2);
    font-weight: var(--font_weight_medium);
    color: var(--typography_dark_500);
    max-width: 600px;
}

.appilix_tools_hero .hero_wrapper .hero_description {
    margin: 20px auto 0 auto;
    font-size: var(--web_body_size_b3);
    line-height: var(--web_body_line_height_b3);
    font-weight: var(--font_weight_regular);
    max-width: 560px;
}


/* ===================================*/
/* Tools List Section                 */
/* ===================================*/
.appilix_tools_list {
    background: var(--surface_s3);
    padding: 80px 0;
}

.appilix_tools_list .tools_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.appilix_tools_list .tool_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid var(--surface_s3);
    background-color: var(--gray_50);
    box-shadow: 0 0 0 1px #F5F5F5;
}

.appilix_tools_list .tool_card:hover {
    border-color: var(--green_primary_300);
    box-shadow: 0 4px 20px rgba(10, 122, 91, 0.08);
}

.appilix_tools_list .tool_card_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--green_primary_50);
    color: var(--green_primary_600);
    flex-shrink: 0;
}

.appilix_tools_list .tool_card_body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appilix_tools_list .tool_card_meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.appilix_tools_list .tool_card_title {
    font-size: var(--web_body_size_b2);
    line-height: var(--web_body_line_height_b2);
    font-weight: var(--font_weight_medium);
    color: var(--typography_dark_500);
}

.appilix_tools_list .tool_badge {
    display: inline-block;
    font-size: 11px;
    font-weight: var(--font_weight_medium);
    line-height: 1;
    color: var(--green_primary_700);
    background: var(--green_primary_50);
    border: 1px solid var(--green_primary_200);
    padding: 3px 8px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.appilix_tools_list .tool_card_description {
    font-size: var(--web_body_size_b4);
    line-height: var(--web_body_line_height_b4);
    font-weight: var(--font_weight_regular);
    color: var(--typography_dark_300);
}

.appilix_tools_list .tool_card_arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--green_primary_500);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.appilix_tools_list .tool_card:hover .tool_card_arrow {
    opacity: 1;
}

.appilix_tools_list .tools_coming_soon {
    margin-top: 40px;
    text-align: center;
    font-size: var(--web_body_size_b4);
    line-height: var(--web_body_line_height_b4);
    color: var(--typography_dark_200);
}


/* For Extra Large Screen */
@media screen and (max-width: 1350px) {

}

/* For Large Screen */
@media screen and (max-width: 1280px) {
    .appilix_tools_list .tools_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For Tablet View */
@media screen and (max-width: 992px) {
    .appilix_tools_hero .hero_wrapper {
        padding: 120px 0 80px 0;
    }

    .appilix_tools_hero .hero_wrapper .hero_title {
        font-size: var(--web_heading_size_h3);
        line-height: var(--web_heading_line_height_h3);
    }
}

/* For Mobile View */
@media screen and (max-width: 768px) {
    .appilix_tools_hero {
        padding: 0;
    }

    .appilix_tools_hero .hero_wrapper {
        border-radius: 0;
        padding: 120px 0 60px 0;
        background-image: none;
    }

    .appilix_tools_hero .hero_wrapper .hero_title {
        margin: 16px auto 0 auto;
        font-size: var(--web_heading_size_h4);
        line-height: var(--web_heading_line_height_h4);
    }

    .appilix_tools_hero .hero_wrapper .hero_description {
        margin: 16px auto 0 auto;
        font-size: var(--mobile_body_size_b2);
        line-height: var(--mobile_body_line_height_b2);
    }

    .appilix_tools_list {
        padding: 60px 0;
    }

    .appilix_tools_list .tools_grid {
        grid-template-columns: 1fr;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px) {
    .appilix_tools_hero .hero_wrapper {
        text-align: left;
        padding: 100px 0 40px 0;
    }

    .appilix_tools_hero .hero_wrapper .hero_title {
        font-size: var(--mobile_heading_size_h1);
        line-height: var(--mobile_heading_line_height_h1);
    }
}
