@media only screen and (max-width: 767px) {
  .post__content .social--share__links li + li{
	  margin-top: 0;
  }
}

/* Cookie Popup Styles */
.coOKie-popup {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.modal-header {
    padding: 0 0 20px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #274912;
    font-size: 18px;
}

.Schließen-popup {
    cursor: pointer;
    color: #666;
    font-size: 14px;
}

.Schließen-popup:hover {
    color: #274912;
}

.modal-body {
    padding: 20px 0 0 0;
}

.modal-body p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.coOKie_block {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.coOKie_block__title {
    margin: 0 0 10px 0;
    color: #274912;
    font-weight: bold;
}

.coOKie_block__text {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.coOKie_block input[type="checkbox"] {
    margin-right: 8px;
}

.coOKie_block__buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.coOKie_block__buttons .btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.coOKie_block__buttons .btn--dark {
    background-color: #274912;
    color: white;
}

.coOKie_block__buttons .btn--dark:hover {
    background-color: #1a3a0a;
}

.pref_coOKie {
    background-color: #94b479;
    color: white;
}

.pref_coOKie:hover {
    background-color: #7a9a5f;
}

@media (max-width: 768px) {
    .coOKie-popup {
        margin: 20px;
        max-width: none;
    }
    
    .coOKie_block__buttons {
        flex-direction: column;
    }
}