.elementor-widget-gt-hot-topics {

}

.elementor-widget-gt-hot-topics .dp-hot-topics-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-auto-flow: dense;
}

.elementor-widget-gt-hot-topics .topic-item {
    position: relative;
    aspect-ratio: 1;
    color: #ffffff;
    border-radius: 20px;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.elementor-widget-gt-hot-topics .topic-item:first-child {
    grid-column: span 2;
    aspect-ratio: auto;
}

.elementor-widget-gt-hot-topics .topic-item .bg {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--e-global-color-secondary, #262D28);
    background: radial-gradient(circle, #0a100b 0%, rgba(0,0,0,1) 100%);
    overflow: hidden;
}

.elementor-widget-gt-hot-topics .topic-item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.elementor-widget-gt-hot-topics .topic-item:hover .bg img,
.elementor-widget-gt-hot-topics .topic-item:active .bg img,
.elementor-widget-gt-hot-topics .topic-item:focus .bg img {
    transform: scale(1.2);
}

.elementor-widget-gt-hot-topics .topic-item .bg-overlay {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.elementor-widget-gt-hot-topics .topic-item:hover .bg-overlay,
.elementor-widget-gt-hot-topics .topic-item:active .bg-overlay,
.elementor-widget-gt-hot-topics .topic-item:focus .bg-overlay {
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
}

.elementor-widget-gt-hot-topics .topic-item .content {
    display: flex;
    flex-flow: column-reverse nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 30px;
    margin: 0;
}

.elementor-widget-gt-hot-topics .topic-item .content .label {
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-b5c164b-font-family), Sans-serif;
    font-size: var(--e-global-typography-bb49520-font-size);
    font-weight: var(--e-global-typography-bb49520-font-weight);
    text-transform: var(--e-global-typography-bb49520-text-transform);
    font-style: var(--e-global-typography-bb49520-font-style);
    text-decoration: var(--e-global-typography-bb49520-text-decoration);
    line-height: var(--e-global-typography-bb49520-line-height);
    letter-spacing: var(--e-global-typography-bb49520-letter-spacing);
    word-spacing: var(--e-global-typography-bb49520-word-spacing);
    background-color: var(--e-global-color-accent, #00CE7E);
    border-radius: 50px 50px 50px 50px;
    margin: 0px 0px 0px 0px;
    padding: 0.2em 1em 0em 1em;
}

.elementor-widget-gt-hot-topics .topic-item.post-type-aktionen .content .label {
    background-color: var(--e-global-color-primary, #EBFB51);
}

.elementor-widget-gt-hot-topics .topic-item .content .title {
    margin: 0;
    transition: transform 0.3s ease;
}

.elementor-widget-gt-hot-topics .topic-item:hover .content .title,
.elementor-widget-gt-hot-topics .topic-item:focus .content .title,
.elementor-widget-gt-hot-topics .topic-item:active .content .title {
    transform: translateY(-20px);
}

.elementor-widget-gt-hot-topics .topic-item .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {

    .elementor-widget-gt-hot-topics .dp-hot-topics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .elementor-widget-gt-hot-topics .topic-item:first-child {
        aspect-ratio: 2 / 1;
    }

}

@media (max-width: 767px) {

    .elementor-widget-gt-hot-topics .dp-hot-topics-grid {
        grid-template-columns: 1fr;
    }

    .elementor-widget-gt-hot-topics .topic-item:first-child {
        grid-column: span 1;
        aspect-ratio: 1;
    }

}