.image-columns {
    background-color: var(--pure-black);
}

.image-columns .boxed {
    padding-top: 125px;
    padding-bottom: 125px;
}

.image-columns .boxed .items.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.image-columns .boxed .items.two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.image-columns .boxed .items .item .media {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.image-columns .boxed .items.three .item .media {
    aspect-ratio: 1;
}

.image-columns .boxed .items.two .item .media {
    aspect-ratio: 16 / 9;
}

.image-columns .boxed .items .item .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-columns .boxed .items .item .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-columns .boxed .items.two .item .media::before {
    -webkit-mask-image: url("images/mask-two.png");
    mask-image: url("images/mask-two.png");
}

.image-columns .boxed .items.three .item .media::before {
    -webkit-mask-image: url("images/mask-three.png");
    mask-image: url("images/mask-three.png");
}

.image-columns .boxed .items .item.deep-purple .media::before {
    background: linear-gradient(188deg, rgba(80, 22, 94, 0.00) 61.93%, rgba(92, 28, 110, 0.90) 85.13%);
}

.image-columns .boxed .items .item.bright-cyan .media::before {
    background: linear-gradient(180deg, rgba(0, 182, 214, 0.00) 40.67%, #00B6D6 87.56%);
}

.image-columns .boxed .items .item.soft-orange .media::before {
    background: linear-gradient(180deg, rgba(255, 121, 3, 0.00) 40.67%, #FF7903 87.56%);
}

.image-columns .boxed .items .item .media img {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-columns .boxed .items.two .item .media img {
    -webkit-mask-image: url("images/mask-two.png");
    mask-image: url("images/mask-two.png");
}

.image-columns .boxed .items.three .item .media img {
    -webkit-mask-image: url("images/mask-three.png");
    mask-image: url("images/mask-three.png");;
}

.image-columns .boxed .items .item .info {
    position: absolute;
    z-index: 20;
    bottom: 25px;
    left: 20px;
}

.image-columns .boxed .items .item .info > h2, .image-columns .boxed .items .item .content p, .image-columns .boxed .items .item .content p > a  {
    font-family: Inter-700, sans-serif;
    font-size: 22px;
    line-height: normal;
    text-decoration: none;
    margin-bottom: 0;
    color: var(--pure-white);
}

.image-columns .boxed .items .item.deep-purple .info > h2 {
    color: var(--pure-white);
    max-width: 370px;
}

.image-columns .boxed .items .item.bright-cyan .info > h2 {
    color: var(--jet-black);
    max-width: 370px;
}

.image-columns .boxed .items .item .content p  {
    max-width: 400px;
}
