/* --- Cover Slide Styles (Template Match) --- */

.slide-content.cover-mode {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: white;
    position: relative;
}

.cover-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cover-right {
    flex: 0.8;
    position: relative;
    overflow: hidden;
}

/* Placeholder for the solar panel image - using a gradient/pattern for now */
.cover-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/seo-hero.png'); /* Using existing image as texture */
    background-size: cover;
    background-position: center;
    opacity: 0.95; /* Fade it out */
    mix-blend-mode: overlay;
}

/* Green vertical strip on the right edge */
.cover-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: #69f0ae;
}

/* Typography */
.cover-meta {
    position: absolute;
    top: 40px;
    left: 60px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cover-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: left;
    border-bottom: none; /* Remove default h2 border */
    padding-bottom: 0;
}

.cover-subtitle-box {
    background-color: #c0caff; /* Light blue */
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 40px;
    width: fit-content;
    position: relative;
}

/* The little notch/shape on the subtitle box if needed, skipping for simplicity */

.cover-subtitle {
    font-size: 18px;
    color: #000;
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.cover-plus {
    position: absolute;
    bottom: 40px;
    left: 60px;
    font-size: 80px;
    font-weight: 300;
    line-height: 1;
    color: #000;
}

/* Spark Graphic (CSS Shapes) */
.spark-container {
    position: absolute;
    top: 10%;
    left: 50%; /* Position near the split */
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    z-index: 10;
    pointer-events: none;
}

.spark-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #69f0ae;
    border-radius: 2px;
}

.spark-line:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.spark-line:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg); }
.spark-line:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg); }
.spark-line:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg); }

/* Team info at bottom */
.cover-team-info {
    margin-top: auto;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
    padding-left: 60px; /* Align with plus */
    margin-bottom: 40px;
}
