.cfpro-dmnp__editorial-section {
padding: 60px 0;
background: #f8f9fa;
}
.cfpro-dmnp__editorial-section:nth-child(even) {
background: #ffffff;
}
.cfpro-dmnp__section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 3rem;
position: relative;
}
.cfpro-dmnp__section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 2px;
}
.cfpro-dmnp__editorial-grid {
display: grid;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.cfpro-dmnp__editorial-card {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}
.cfpro-dmnp__editorial-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.cfpro-dmnp__editorial-image {
width: 100%;
height: 250px;
overflow: hidden;
position: relative;
}
.cfpro-dmnp__editorial-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.cfpro-dmnp__editorial-card:hover .cfpro-dmnp__editorial-image img {
transform: scale(1.05);
}
.cfpro-dmnp__editorial-content {
padding: 2rem;
flex: 1;
display: flex;
flex-direction: column;
}
.cfpro-dmnp__editorial-content h3 {
font-size: 1.5rem;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 1rem;
line-height: 1.3;
}
.cfpro-dmnp__editorial-text {
flex: 1;
color: #4a4a4a;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.cfpro-dmnp__editorial-text p {
margin-bottom: 1rem;
}
.cfpro-dmnp__editorial-text p:last-child {
margin-bottom: 0;
}
.cfpro-dmnp__editorial-gallery {
display: flex;
gap: 0.5rem;
margin-top: auto;
flex-wrap: wrap;
}
.cfpro-dmnp__gallery-item {
border-radius: 8px;
overflow: hidden;
cursor: pointer;
transition: transform 0.2s ease;
border: 2px solid transparent;
}
.cfpro-dmnp__gallery-item:hover {
transform: scale(1.05);
border-color: #667eea;
}
.cfpro-dmnp__gallery-item img {
width: 80px;
height: 80px;
object-fit: cover;
display: block;
} .cfpro-dmnp__editorial--pre-match {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.cfpro-dmnp__editorial--pre-match .cfpro-dmnp__section-title {
color: white;
}
.cfpro-dmnp__editorial--pre-match .cfpro-dmnp__section-title::after {
background: rgba(255, 255, 255, 0.8);
}
.cfpro-dmnp__editorial--pre-match .cfpro-dmnp__editorial-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}
.cfpro-dmnp__editorial--post-match {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
}
.cfpro-dmnp__editorial--post-match .cfpro-dmnp__section-title {
color: white;
}
.cfpro-dmnp__editorial--post-match .cfpro-dmnp__section-title::after {
background: rgba(255, 255, 255, 0.8);
}
.cfpro-dmnp__editorial--post-match .cfpro-dmnp__editorial-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}
.cfpro-dmnp__editorial--general {
background: #ffffff;
}
.cfpro-dmnp__editorial--general .cfpro-dmnp__section-title {
color: #1a1a1a;
} @media (min-width: 768px) {
.cfpro-dmnp__editorial-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1024px) {
.cfpro-dmnp__editorial-grid {
grid-template-columns: repeat(3, 1fr);
}
} .cfpro-dmnp__editorial-grid:only-child .cfpro-dmnp__editorial-card {
max-width: 800px;
margin: 0 auto;
}
.cfpro-dmnp__editorial-grid:only-child {
grid-template-columns: 1fr;
} .dmnp-lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.dmnp-lightbox.active {
opacity: 1;
visibility: visible;
}
.dmnp-lightbox img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
border-radius: 8px;
transform: scale(0.9);
transition: transform 0.3s ease;
}
.dmnp-lightbox.active img {
transform: scale(1);
}
.dmnp-lightbox-close {
position: absolute;
top: 20px;
right: 20px;
background: rgba(255, 255, 255, 0.2);
border: none;
color: white;
font-size: 2rem;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
}
.dmnp-lightbox-close:hover {
background: rgba(255, 255, 255, 0.3);
} .cfpro-dmnp__editorial-loading {
text-align: center;
padding: 4rem 2rem;
color: #666;
}
.cfpro-dmnp__editorial-loading::before {
content: '';
display: inline-block;
width: 40px;
height: 40px;
border: 4px solid #f3f3f3;
border-top: 4px solid #667eea;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 1rem;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} @media (max-width: 767px) {
.cfpro-dmnp__editorial-section {
padding: 40px 0;
}
.cfpro-dmnp__section-title {
font-size: 2rem;
margin-bottom: 2rem;
}
.cfpro-dmnp__editorial-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
padding: 0 1rem;
}
.cfpro-dmnp__editorial-image {
height: 200px;
}
.cfpro-dmnp__editorial-content {
padding: 1.5rem;
}
.cfpro-dmnp__editorial-content h3 {
font-size: 1.25rem;
}
.cfpro-dmnp__gallery-item img {
width: 60px;
height: 60px;
}
} @media print {
.cfpro-dmnp__editorial-section {
background: white !important;
color: black !important;
page-break-inside: avoid;
}
.cfpro-dmnp__editorial-card {
box-shadow: none;
border: 1px solid #ddd;
page-break-inside: avoid;
}
.cfpro-dmnp__gallery-item {
border-color: #ddd;
}
}