/* Graphic Blocks Styles */
.graphicblocks-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 45px;
}

.graphicblock-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.graphicblock-text {
    position: absolute;
    top: 40px;
    left: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.graphicblock-item img {
    transition: transform 0.5s ease;
}

.graphicblock-item:hover img {
    transform: scale(1.1);
}
.graphicblock-text h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.4;
    margin-bottom: 0;
}

.graphicblock-text p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.graphicblock-text a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}