:root {
--possl-primary: var(--awb-color6, #1B67B1); --possl-secondary: var(--awb-color7, #23609D); --possl-accent: var(--awb-color4, #A0CE4E); --possl-light-bg: var(--awb-color2, #F6F6F6); --possl-lighter-bg: var(--awb-color1, #FFFFFF); --possl-border: var(--awb-color3, #E0DEDE); --possl-text: var(--awb-color8, #333333); --possl-text-light: var(--awb-color5, #747474); } .possl-specs-wrapper {
display: grid;
gap: 24px;
margin: 40px 0;
}
.possl-specs-wrapper.possl-cols-2 {
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.possl-specs-wrapper.possl-cols-1 {
grid-template-columns: 1fr;
} .possl-spec-group {
background: var(--possl-lighter-bg);
border: 1px solid var(--possl-border);
border-radius: 8px;
padding: 32px 28px;
transition: box-shadow 0.3s ease;
}
.possl-spec-group:hover {
box-shadow: 0 4px 16px rgba(27, 103, 177, 0.08);
} .possl-spec-title {
font-size: 22px;
font-weight: 600;
color: var(--possl-primary);
margin: 0 0 24px 0;
padding-bottom: 16px;
border-bottom: 2px solid var(--possl-border);
display: flex;
align-items: center;
gap: 12px;
}
.possl-spec-title::before {
content: "◆";
color: var(--possl-accent);
font-size: 14px;
} .possl-spec-grid {
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
} .possl-spec-item {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 16px;
background: var(--possl-light-bg);
border-radius: 6px;
border-left: 3px solid var(--possl-primary);
transition: all 0.2s ease;
}
.possl-spec-item:hover {
background: #EEF5FB;
border-left-color: var(--possl-accent);
}
.possl-spec-item .possl-icon {
font-size: 20px;
line-height: 1;
flex-shrink: 0;
filter: grayscale(20%);
}
.possl-spec-content {
display: flex;
flex-direction: column;
gap: 6px;
min-width: 0;
flex: 1;
}
.possl-spec-label {
font-size: 12px;
color: var(--possl-text-light);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.8px;
}
.possl-spec-value {
font-size: 17px;
font-weight: 600;
color: var(--possl-text);
line-height: 1.4;
word-wrap: break-word;
}
.possl-spec-value small {
font-size: 13px;
font-weight: 400;
color: var(--possl-text-light);
margin-left: 4px;
} .possl-quick-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 20px;
margin: 30px 0;
padding: 32px 28px;
background: linear-gradient(135deg, var(--possl-primary) 0%, var(--possl-secondary) 100%);
border-radius: 8px;
box-shadow: 0 4px 12px rgba(27, 103, 177, 0.15);
}
.possl-stat {
display: flex;
align-items: center;
gap: 14px;
padding: 20px;
background: rgba(255, 255, 255, 0.98);
border-radius: 6px;
text-align: left;
transition: transform 0.2s ease;
}
.possl-stat:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.possl-stat-icon {
font-size: 28px;
line-height: 1;
}
.possl-stat-content {
display: flex;
flex-direction: column;
gap: 4px;
}
.possl-stat-value {
font-size: 20px;
font-weight: 700;
color: var(--possl-text);
line-height: 1.2;
}
.possl-stat-label {
font-size: 11px;
color: var(--possl-text-light);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.8px;
} .possl-features {
background: var(--possl-lighter-bg);
border: 1px solid var(--possl-border);
border-radius: 8px;
padding: 32px 28px;
}
.possl-features-list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 12px;
}
.possl-features-list li {
padding: 14px 14px 14px 48px;
background: var(--possl-light-bg);
border-radius: 6px;
border-left: 3px solid var(--possl-accent);
position: relative;
line-height: 1.6;
color: var(--possl-text);
font-size: 15px;
}
.possl-features-list li::before {
content: "✓";
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
font-weight: bold;
color: var(--possl-accent);
} .possl-features-list li br {
display: block;
content: "";
margin-top: 4px;
} .possl-gallery {
display: grid;
gap: 16px;
margin: 30px 0;
}
.possl-gallery.possl-gallery-cols-2 {
grid-template-columns: repeat(2, 1fr);
}
.possl-gallery.possl-gallery-cols-3 {
grid-template-columns: repeat(3, 1fr);
}
.possl-gallery.possl-gallery-cols-4 {
grid-template-columns: repeat(4, 1fr);
}
.possl-gallery-item {
position: relative;
overflow: hidden;
border-radius: 6px;
display: block;
aspect-ratio: 4/3;
background: var(--possl-light-bg);
border: 1px solid var(--possl-border);
}
.possl-gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.possl-gallery-item:hover img {
transform: scale(1.03);
} .possl-field {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 18px;
background: var(--possl-light-bg);
border-radius: 6px;
margin: 4px;
border-left: 3px solid var(--possl-primary);
}
.possl-field .possl-icon {
font-size: 18px;
}
.possl-field .possl-label {
font-weight: 600;
color: var(--possl-text-light);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.possl-field .possl-value {
color: var(--possl-text);
font-weight: 600;
font-size: 15px;
} @media (max-width: 768px) { .possl-specs-wrapper.possl-cols-2,
.possl-specs-wrapper.possl-cols-1 {
grid-template-columns: 1fr;
gap: 20px;
}
.possl-spec-grid {
grid-template-columns: 1fr;
}
.possl-quick-stats {
grid-template-columns: repeat(2, 1fr);
padding: 24px 20px;
}
.possl-gallery.possl-gallery-cols-3,
.possl-gallery.possl-gallery-cols-4 {
grid-template-columns: repeat(2, 1fr);
}
.possl-spec-group {
padding: 24px 20px;
}
.possl-spec-title {
font-size: 20px;
}
.possl-stat {
padding: 16px;
}
}
@media (max-width: 480px) {
.possl-quick-stats {
grid-template-columns: 1fr;
gap: 16px;
}
.possl-gallery.possl-gallery-cols-2,
.possl-gallery.possl-gallery-cols-3,
.possl-gallery.possl-gallery-cols-4 {
grid-template-columns: 1fr;
}
.possl-stat {
padding: 14px;
}
.possl-stat-icon {
font-size: 24px;
}
.possl-stat-value {
font-size: 18px;
}
.possl-spec-item {
padding: 14px;
}
} @media print {
.possl-spec-group,
.possl-features {
box-shadow: none;
border: 1px solid #ddd;
page-break-inside: avoid;
}
.possl-spec-item:hover,
.possl-spec-group:hover,
.possl-stat:hover {
transform: none;
background: transparent;
}
.possl-gallery-item img {
max-height: 200px;
}
.possl-quick-stats {
background: #f5f5f5 !important;
}
} .possl-gallery-item:focus {
outline: 2px solid var(--possl-primary);
outline-offset: 2px;
}
.possl-spec-item:focus-within,
.possl-stat:focus-within {
outline: 2px solid var(--possl-primary);
outline-offset: 2px;
} @media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
} .sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
} @media (min-width: 1400px) {
.possl-spec-grid {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.possl-spec-group {
padding: 36px 32px;
}
.possl-quick-stats {
padding: 36px 32px;
}
}.wp-caption-text,
.gallery-caption,
.bypostauthor {
}.mp-carousel-wrapper .fusion-carousel-item-wrapper,
.mp-carousel-wrapper .fusion-image-wrapper {
width: 630px;
height: 500px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.mp-carousel-wrapper .fusion-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover; 
object-position: center;
} @media (max-width: 1024px) {
.mp-carousel-wrapper .fusion-carousel-item-wrapper,
.mp-carousel-wrapper .fusion-image-wrapper {
width: 100%;
height: 400px;
}
} @media (max-width: 768px) {
.mp-carousel-wrapper .fusion-carousel-item-wrapper,
.mp-carousel-wrapper .fusion-image-wrapper {
width: 100%;
height: 300px;
}
}