.alt-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.alt-content > h3 {
  	max-width: 700px;
  	margin: 0;
}
.alt-content--item {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}
.alt-content--media,
.alt-content--text {
    flex: 1 1 100%;
}
.alt-content--text {
    padding: 1.75rem 0.5rem 0;
}
.alt-content--text h3 {
    position: relative;
    text-wrap: balance;
}
/*.alt-content--text h3:before {
    position: absolute;
    left: 0;
    top: -2rem;
    line-height: 1;
    color: var(--brand-orange, #E05B10);
    font-family: var(--font__special, 'Archivo Black');
    font-size: calc((var(--font-min__h2) * 1px) + (var(--font-max__h2) - var(--font-min__h2)) * (100vw - calc(var(--min-size) * 1px)) / (var(--max-size) - var(--min-size)));
}
.alt-content--item:nth-of-type(1) .alt-content--text h3:before {
    content: '1.';
}
.alt-content--item:nth-of-type(2) .alt-content--text h3:before {
    content: '2.';
}
.alt-content--item:nth-of-type(3) .alt-content--text h3:before {
    content: '3.';
}
.alt-content--item:nth-of-type(4) .alt-content--text h3:before {
    content: '4.';
}
.alt-content--item:nth-of-type(5) .alt-content--text h3:before {
    content: '5.';
}
.alt-content--item:nth-of-type(6) .alt-content--text h3:before {
    content: '6.';
}*/
.alt-content--media.no-image {
    display: none;
}
.alt-content--media img {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    object-fit: cover;
}
.alt-content--details {
    font-size: var(--font-size__base);
}
.alt-content--actions {
    padding-top: 1rem;
    display: flex;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}
@media screen and (min-width: 900px) {
    .alt-content {
        gap: 4rem;
    }
	.alt-content--media,
    .alt-content--text {
        flex: 0 1 calc(50% - 0.75rem);
    }
    .alt-content--item:nth-of-type(odd) .alt-content--text {
        order: 1;
    }
    .alt-content--item:nth-of-type(odd) .alt-content--media {
        order: 2;
    }
    .alt-content--item:nth-of-type(even) .alt-content--text {
        order: 2;
    }
    .alt-content--item:nth-of-type(even) .alt-content--media {
        order: 1;
    }
}
