/* static/css/pages/3m-matte-black.css */

.wrap-details-section {
    background-color: #f8fafc;
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light-color);
}

.wrap-details-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .wrap-details-container {
        grid-template-columns: 1fr 1fr; /* Split highlights and text */
    }
}

.wrap-highlights {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
}

.wrap-highlights__title {
    color: var(--brand-dark-blue);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-light-color);
    padding-bottom: 0.5rem;
}

.wrap-highlights__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrap-highlights__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #475569;
}

.wrap-highlights__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.wrap-details-text {
    line-height: 1.8;
    color: #333;
}

.wrap-details-text p {
    margin-bottom: 1.5rem;
}

/* --- Video Section Styling --- */
.wrap-video-section {
    background-color: #1a1a1a; /* Dark background for video area */
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.wrap-video-section__title {
    color: white;
    margin-bottom: 2rem;
}

.video-container-wrapper {
    max-width: 960px; /* 16:9 aspect ratio max width */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

/* Responsive iframe container */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe,
.video-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}