#home .about-TM-v1 {
    position: relative;
    margin: 0 auto;
    padding: 40px 20px;

    @media only screen and (min-width: 600px) {
        padding: 40px 32px;
    }

    &.style-bold .header-slot-container {
        border-color: var(--header-accent-color, var(--secondary-color));
    }

    .about-header-TM-v1 {
        margin-bottom: 40px;

        h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--about-TM-v1-heading-color, #000);
            margin-bottom: 10px;
            text-transform: uppercase;
        }
    }

    .about-content-TM-v1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 48px;

        @media only screen and (max-width: 1279px) {
            flex-direction: column;
            flex-wrap: wrap;
        }
    }

    .about-info-TM-v1 {
        display: flex;
        gap: 32px;
        flex: 1;

        @media only screen and (max-width: 959px) {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }

    .about-media-col-TM-v1 {
        display: flex;
        flex-direction: column;
        width: 272px;
        flex-shrink: 0;

        @media only screen and (max-width: 959px) {
            width: 100%;
            max-width: 272px;
        }
    }

    .about-image-TM-v1 {
        img {
            width: 272px;
            height: 272px;
            object-fit: cover;
            flex-shrink: 0;
        }
    }

    .about-contact-box-TM-v1 {
        padding: 20px 16px;
        border-radius: 4px;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 700;
        color: var(--about-TM-v1-contact-text-color, #000);
        text-align: center;
        word-break: break-word;
        display: flex;
        flex-direction: column;
        gap: 6px;

        &:not(:has(> :not(:empty))) {
            display: none;
        }

        >* {
            display: block;

            &:last-child {
                margin-bottom: 0;
            }

            &:empty {
                display: none;
            }
        }

        .contact-name {
            font-size: 18px;
        }

        a {
            color: var(--about-TM-v1-contact-link-color, #000);
        }
    }

    .about-description-TM-v1 {
        font-size: 20px;
        line-height: 1.5;
        color: var(--about-TM-v1-desc-color, #404040);

        p {
            margin-bottom: 20px;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }

    .about-links-loop-TM-v1 {
        display: flex;
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        max-width: 100%;
        width: 546px;

        @media only screen and (max-width: 599px) {
            gap: 0;

            &>div {
                width: 100%;
            }
        }

        &:has(> div:only-child > .about-link-card-TM-v1:only-child):has(.js-preview-link:empty):has(.js-preview-icon > span:empty) {
            display: none !important;
        }
    }

    .about-link-card-TM-v1 {
        width: 160px;
        height: 160px;
        background-color: var(--about-TM-v1-card-bg-color, var(--primary-color));
        border-radius: 2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        transition: transform 0.2s ease-in-out, filter 0.2s;

        &:hover {
            transform: scale(1.1);
            filter: brightness(90%);
        }

        @media only screen and (max-width: 599px) {
            width: 100%;
            height: auto;
            flex-direction: row;
            justify-content: flex-start;
            padding: 24px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);

            &:first-child {
                border-top: 1px solid rgba(0, 0, 0, 0.15);
            }
        }
    }

    .about-icon-wrapper-TM-v1 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 40px;
        margin-bottom: 15px;

        svg {
            width: 100%;
            height: 100%;

            path {
                fill: var(--about-TM-v1-card-icon-color, var(--primary-color-contrast));
            }
        }

        @media only screen and (max-width: 599px) {
            margin-bottom: 0;
            margin-right: 15px;
        }
    }

    .about-link-text-TM-v1 {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--about-TM-v1-card-text-color, var(--primary-color-contrast));
        padding: 0 10px;

        a {
            color: inherit;
            text-decoration: none;

            &::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 10;
            }
        }
    }
}