.article--light {
    margin-bottom: 40px;
}

.article--light h1 {
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.presentation-slides {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.presentation-slide {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.presentation-slide img {
	display: block;
	width: 100%;
	height: auto;
}

.presentation-slides_action {
	position: absolute;
	display: flex;
	padding: 24px;
	align-items: center;
	gap: 48px;
	border-radius: 20px;
	background: var(--background-primary, #FFF);
	box-shadow: 0 0 15px 0 rgba(13, 13, 13, 0.11);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.presentation-slides_action-container {
	width: max-content;
}

.presentation-slides_action-title {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
}

.presentation-slides_action-desc {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}

a.presentation-slides_action-btn {
	display: flex;
	height: 56px;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	border-radius: 99px;
	background: #0A7CFF;
}

@media (min-width: 1024px) {
    .presentation-action {
        position: sticky;
        top: 30px;
    }   
}

.presentation-action {
    display: flex;
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    border-radius: 20px;
    background: rgba(10, 124, 255, 0.08);
}

@media (max-width: 1439px) and (min-width: 768px) {
    .presentation-action {
        position: relative;
        padding: 32px;
    }
}

.presentation-action_title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.presentation-action_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.presentation-action_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.presentation-action_btn {
    display: flex;
    height: 56px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    border-radius: 99px;
    background: #0D0D0D;
}

@media (max-width: 1439px) and (min-width: 768px) {
    .presentation-action_btn {
        position: absolute;
        bottom: 32px;
        right: 32px;
    }
}

.gdz-card .wp-post-image {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.gdz-card .gdz-card_title {
    margin-bottom: 8px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.gdz-card .gdz-card_excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}

.category-presentation .gdz-card {
    padding: 16px;
    border: none;
    border-radius: 20px;
    background: rgba(10, 124, 255, 0);
    transition: background-color .3s ease;
}

.category-presentation .gdz-card:hover {
    background: rgba(10, 124, 255, 0.08);
}