
.snews-section {
    max-width: 1150px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #dcd6cd;
	border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
}

/* Single Column Layout */
.sarticle-single-column {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
}

.sarticle-single-column p {
    margin-top: 0;
    margin-bottom: 1.2rem;
    text-indent: 1.5em; /* Classic newspaper paragraph indent */
}

/* Angled Image & Text Wrapping */
.speaker-wrap-angled {
    float: left;
    width: 250px;
    max-width: 40%; /* Shrinks smoothly on smaller screens while staying beside text */
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    transform: rotate(-3deg); /* Non-straight / tilted look */
}

.speaker-image-angled {
    width: 100%;
    height: auto;
    border: 1px solid #333;
    padding: 6px;
    background: #fff;
    filter: grayscale(100%); /* Vintage newspaper photo effect */
    box-shadow: 2px 5px 10px rgba(0,0,0,0.15);
    transition: filter 0.3s ease;
}

.speaker-image-angled:hover {
    filter: grayscale(0%);
}

.image-caption {
    font-size: 0.75rem;
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
    color: #555;
    line-height: 1.2;
}

/* Drop Cap Effect for the very first letter */
.drop-cap::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    float: left;
    line-height: 0.8;
    padding-right: 8px;
    padding-top: 4px;
    color: #111;
    font-weight: bold;
    text-indent: 0;
}