/**
 * A Small Hole, The Great Capability
 * Block: ashgc
 */
.ashgc {
    --ashgc-primary: #1979d2;
    --ashgc-text: #000000;
    --ashgc-white: #ffffff;
    --ashgc-link: #0782c1;
    --ashgc-container-width: 1180px;
    --ashgc-padding-x: 50px;
    --ashgc-padding-y: 20px;
    padding-top: 106px;
}

@media (max-width: 768px) {
    .ashgc {
        padding-top: 68px;
    }
}

.ashgc,
.ashgc * {
    box-sizing: border-box;
}

.ashgc__container {
    width: 100%;
    max-width: var(--ashgc-container-width);
    margin: 0 auto;
    background-color: var(--ashgc-white);
}

.ashgc-section {
    width: 100%;
    background-color: var(--ashgc-white);
    padding: var(--ashgc-padding-y) var(--ashgc-padding-x);
    float: left;
}

.ashgc-section__title {
    font-size: 22px;
    
    color: var(--ashgc-primary);
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ashgc-section__text {
    color: var(--ashgc-text);
    font-size: 16px;
    line-height: 35px;
    
    margin-bottom: 15px;
}

.ashgc-section__text--accent {
    color: var(--ashgc-primary);
    font-size: 16px;
    line-height: 35px;
    
    margin-bottom: 15px;
}

.ashgc-solutions-bar {
    width: 100%;
    height: 50px;
    background-color: var(--ashgc-primary);
    margin: 10px auto 0;
    display: flex;
    align-items: center;
}

.ashgc-solutions-bar__title {
    font-size: 22px;
    
    color: var(--ashgc-white);
    line-height: 52px;
    font-weight: bold;
    margin-left: var(--ashgc-padding-x);
}

.ashgc-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.ashgc-split__main {
    flex: 1;
    margin-top: 20px;
}

.ashgc-split__aside {
    flex: 0 0 30%;
}

.ashgc-split__img {
    float: right;
    width: auto;
}

.ashgc-media {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.ashgc-testimonial {
    width: 100%;
    min-height: 250px;
    padding: 10px var(--ashgc-padding-x) 30px;
    float: left;
}

.ashgc-testimonial__title {
    font-size: 22px;
    
    color: var(--ashgc-text);
    font-style: italic;
    margin-bottom: 20px;
}

.ashgc-testimonial__text {
    color: var(--ashgc-text);
    font-size: 16px;
    line-height: 35px;
    
    font-style: italic;
    margin-bottom: 20px;
}

.ashgc-testimonial__author {
    float: right;
    padding-right: 80px;
    color: var(--ashgc-text);
    font-style: italic;
}

.ashgc-tags {
    float: left;
    width: 100%;
    min-height: 80px;
    padding-left: var(--ashgc-padding-x);
    margin-top: 20px;
}

.ashgc-tags__link {
    color: var(--ashgc-link);
    text-decoration: none;
    margin-right: 10px;
}

.ashgc-tags__link:hover {
    text-decoration: underline;
}

.ashgc--clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.ashgc-u-text-center {
    text-align: center;
}

.ashgc-u-text-right {
    text-align: right;
}

.ashgc-u-mb-20 {
    margin-bottom: 20px;
}

.ashgc-u-mt-20 {
    margin-top: 20px;
}

.ashgc-u-hidden {
    display: none;
}

.ashgc-u-mobile-only {
    display: none;
}

.ashgc-u-desktop-only {
    display: block;
}

/* Hero */
.ashgc-hero {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
}

.ashgc-hero__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ashgc-hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    z-index: 2;
    width: 1180px;
    max-width: 1180px;
    margin: 0 auto;
    transform: translate(-50%, -50%);
}

.ashgc-hero__text {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-weight: 600;
    color: #ffffff;
    font-size: 4rem;
}

.ashgc-hero__title {
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 1200px) {
    .ashgc-hero__content {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .ashgc {
        --ashgc-container-width: 100%;
        --ashgc-padding-x: 20px;
        --ashgc-padding-y: 15px;
    }

    .ashgc__container {
        width: 100%;
        padding: 0 10px;
    }

    .ashgc-section {
        padding: var(--ashgc-padding-y) var(--ashgc-padding-x);
        width: 100%;
        float: none;
    }

    .ashgc-section__title {
        font-size: 18px;
        line-height: 30px;
    }

    .ashgc-solutions-bar__title {
        font-size: 18px;
        line-height: 30px;
        margin-left: var(--ashgc-padding-x);
    }

    .ashgc-section__text,
    .ashgc-section__text--accent {
        font-size: 14px;
        line-height: 24px;
    }

    .ashgc-solutions-bar {
        height: 40px;
    }

    .ashgc-split {
        flex-direction: column;
        gap: 20px;
    }

    .ashgc-split__main {
        margin-top: 0;
    }

    .ashgc-split__aside {
        flex: none;
        width: 100%;
    }

    .ashgc-split__img {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .ashgc-testimonial {
        padding: 10px var(--ashgc-padding-x) 20px;
        min-height: auto;
    }

    .ashgc-testimonial__title {
        font-size: 18px;
    }

    .ashgc-testimonial__text {
        font-size: 14px;
        line-height: 24px;
    }

    .ashgc-testimonial__author {
        float: none;
        padding-right: 0;
        text-align: right;
        margin-top: 15px;
    }

    .ashgc-tags {
        padding-left: var(--ashgc-padding-x);
        min-height: auto;
        margin-top: 10px;
    }

    .ashgc-tags__link {
        display: inline-block;
        margin: 5px 10px 5px 0;
        font-size: 14px;
    }

    .ashgc-u-mobile-only {
        display: block;
    }

    .ashgc-u-desktop-only {
        display: none;
    }

    .ashgc-hero__img {
        height: 120px;
        object-fit: cover;
    }

    .ashgc-hero__content {
        padding: 1.5rem;
        text-align: left;
    }

    .ashgc-hero__title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
}

@media screen and (max-width: 480px) {
    .ashgc {
        --ashgc-padding-x: 15px;
        --ashgc-padding-y: 10px;
    }

    .ashgc-section__title {
        font-size: 16px;
        line-height: 24px;
    }

    .ashgc-solutions-bar__title {
        font-size: 16px;
        line-height: 24px;
    }

    .ashgc-section__text,
    .ashgc-section__text--accent {
        font-size: 13px;
        line-height: 20px;
    }

    .ashgc-solutions-bar {
        height: 35px;
    }

    .ashgc-testimonial__title {
        font-size: 16px;
    }

    .ashgc-testimonial__text {
        font-size: 13px;
        line-height: 20px;
    }

    .ashgc-tags__link {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ashgc *,
    .ashgc-hero * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .ashgc-hero__title {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}
