* {
  font-family: Arial, Helvetica, sans-serif;
}

nav.rank-math-breadcrumb * {
    color: #000;
}

/* CTA styles: make the footer app link stand out */
.footer-contact .contact-item {
  align-items: center;
}

.contact-item.mt-3 {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  
}
.footer-app-link {
  max-width: 150px;
}

.wp-caption.aligncenter {
    text-align: center;
}

/* Footer recent posts */
.footer-recent-posts {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.footer-recent-posts-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-recent-posts-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.footer-recent-post-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    transition: opacity 0.2s ease;
}

.footer-recent-post-item:hover {
    opacity: 0.8;
}

.footer-recent-post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
}

.footer-recent-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-recent-post-info {
    flex: 1;
    min-width: 0;
}

.footer-recent-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-recent-post-date {
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .footer-recent-posts {
      padding: 20px 20px;
    }
    .footer-recent-posts-list {
        grid-template-columns: 1fr;
    }
}

