a.angebotpdf{
	position: relative;
	display: block;
	margin: 0 9px;
	padding: 35px;
	background: var(--wp--preset--color--beige);
	text-decoration: none;

	&::before,
	&::after{
		content: '';
		position: absolute;
		top: 0;
		left: -9px;
		width: 9px;
		height: 100%;
		background: url(ticket.svg) 0 0/100% auto repeat-y;
	}
	&::after{
		left: auto;
		right: -9px;
		transform: rotate(180deg);
	}
	.title{
		margin-bottom: 12px;
	}
	.preis_ab,
	.reisedauer{
		display: flex;
		gap: 24px;
		margin: 0 0 6px;

		@media (max-width: 1199px){
			gap: 16px;
		}
	}
	.link{
		display: flex;
		align-items: center;
		gap: 16px;
		margin: 24px 0 0;
		font-size: 20px;
		font-weight: 700;
		line-height: 1.4;
		color: var(--wp--preset--color--rot);
		transition: color .3s ease;

		&::before{
			--icon: url(pdf.svg);
			content: '';
			width: 18px;
			height: 22px;
			-webkit-mask: var(--icon) no-repeat center/contain;
			mask: var(--icon) no-repeat center/contain;
			background: currentColor;
			transition: background-color .3s ease;
		}
	}
	&:hover .link{
		color: var(--wp--preset--color--orange);
	}
}