.single-news-wrapper {
    margin-top: clamp(40px, 3.64vw, 70px);
    margin-bottom: clamp(60px, 5.93vw, 114px);
    display: flex;
    flex-direction: column;
}

.single-news {
    margin-top: clamp(16px, 1.67vw, 32px);
    margin-bottom: clamp(60px, 6.25vw, 120px);
}

.single-news__content {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.single-news__content .bread-crumbs {
    margin-bottom: clamp(20px, 1.67vw, 32px);
    padding: 0;
}

.single-news__content .bread-crumbs__wrapper {
    padding: 0;
}

.single-news__header {
    display: flex;
    flex-direction: column;
    margin-bottom: clamp(24px, 2.08vw, 40px);
}

.single-news__title {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(28px, 2.5vw, 48px);
    line-height: 130%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.single-news__author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 46px;
}

.single-news__author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-news__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.single-news__author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.single-news__author-name {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    color: #000000;
}

.single-news__author-row .single-news__date {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #000000;

}

.single-news__meta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.single-news__views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #000000;

}

.single-news__share-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-60);
    transition: opacity 0.2s ease;
}

.single-news__share-btn:hover {
    opacity: 0.7;
}

.single-news__hero-image {
    width: 100%;
    height: clamp(280px, 25vw, 480px);
    background-color: var(--gray-10);
    overflow: hidden;
}

.single-news__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-news__video {
    position: relative;
    width: 100%;
    height: clamp(280px, 25vw, 480px);
    background-color: var(--gray-10);
    overflow: hidden;
    cursor: pointer;
}

.single-news__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-news__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(64px, 4.38vw, 84px);
    height: clamp(64px, 4.38vw, 84px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 0;
}

.single-news__video-play svg {
    width: clamp(20px, 1.46vw, 28px);
    height: clamp(22px, 1.61vw, 31px);
    margin-left: 3px;
}

.single-news__video:hover .single-news__video-play,
.single-news__video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255, 255, 255, 0.55);
}

.single-news__body {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 1.67vw, 32px);
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(15px, 0.94vw, 18px);
    line-height: 140%;
    letter-spacing: 0;
    color: #000000;
}

.single-news__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-news__body p {
    margin: 0;
}

.single-news__body h2,
.single-news__body h3 {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(18px, 1.25vw, 24px);
    line-height: 130%;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}

.single-news__quote {
    border-left: 2px solid #000000;
    padding-left: clamp(16px, 1.25vw, 24px);
    margin: clamp(16px, 1.25vw, 24px) 0;
    font-style: italic;
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: 140%;
    color: #000000;
}

.single-news__list,
.single-news__body ul {
    margin: 0;
    padding-left: clamp(16px, 1.25vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: square;
}

.single-news__list li,
.single-news__body ul li {
    padding-left: 0;
}

.single-news__figure {
    margin: clamp(16px, 1.25vw, 24px) 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.single-news__figure img {
    width: 100%;
    height: clamp(200px, 16.67vw, 320px);
    object-fit: cover;
}

.single-news__figure figcaption {
    font-size: clamp(12px, 0.73vw, 14px);
    color: var(--gray-60);
    font-style: italic;
}

.related-news {
    margin-top: clamp(60px, 6.25vw, 120px);
    margin-bottom: clamp(60px, 6.25vw, 120px);
}

.related-news__title {
    font-family: PP Neue Montreal;
    font-weight: 500;
    font-style: Medium;
    font-size: clamp(28px, 2.92vw, 56px);
    line-height: 130%;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: clamp(32px, 3.33vw, 64px);
}

.related-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(32px, 3.33vw, 64px);
}

@media (max-width: 1024px) {
    .related-news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .related-news__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
