/* Custom styles for baileyhendrickson.com */

/* Profile images */
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.profile-image-large {
    max-width: 300px;
    border-radius: 8px;
    object-fit: cover;
}

/* Tagline styling */
.tagline {
    font-size: 1.25rem;
    color: var(--muted-color);
    margin-bottom: 1.5rem;
}

/* Bio section */
.bio {
    line-height: 1.8;
}

/* Post content styling */
.post-content {
    line-height: 1.8;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2rem;
}

.post-content pre {
    overflow-x: auto;
    padding: 1rem;
    border-radius: 4px;
}

.post-content code {
    font-size: 0.9em;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Navigation active state */
nav a[aria-current="page"] {
    font-weight: bold;
}

/* Footer styling */
footer nav {
    text-align: right;
}

footer nav a {
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Tags/marks */
mark {
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid > a[role="button"] {
        margin-bottom: 0.5rem;
    }

    footer .grid {
        text-align: center;
    }

    footer nav {
        text-align: center;
    }
}
