/* Basic Reset and Base Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #212529;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: #0056b3;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

a:hover {
    color: #0a58ca;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Tweaks */
.container {
    max-width: 960px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 4rem 0;
}

/* Podcast Image Styling */
.podcast-img {
    transition: transform 0.2s ease-in-out;
}

.podcast-img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.podcast-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-width: 150px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .podcast-grid img {
    max-width: 100px; 
    }
}

.podcast-grid {
    --bs-gutter-x: 0.5rem; 
    --bs-gutter-y: 0.5rem;
}

/* Section Spacing */
section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Hero Section Customisation */
.hero {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    color: #777;
    font-size: 0.9rem;
}

.testimonial {
    background-color: #f8f9fa;
    border-left: 6px solid #9c1c3a;
}

.testimonial blockquote {
    max-width: 900px;
    margin: auto;
}

.testimonial p {
    font-style: italic;
    line-height: 1.6;
}

.testimonial footer {
    margin-top: 1rem;
    color: #6c757d;
}

.project-row { 
    row-gap: 1.25rem; 
}

.project-img {
    display: block;
    margin: 0 auto;    
    max-width: 75% !important;     
}

@media (max-width: 576px) {
    .project-img { 
    max-width: 70%;   
    }
}

.project-copy { 
    margin-bottom: 0; 
}
@media (max-width: 576px) {
    .project-copy { 
    margin-bottom: 0.75rem; 
    }
}

