/* Single Post Custom Styles */

.post-header-overlay {
    position: relative;
    width: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.post-header-overlay .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    mix-blend-mode: multiply;
    z-index: 1;
 
}
.post-header-overlay .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 320px;
    padding-bottom: 40px;
    padding-top: 100px;
}
.post-title-overlay {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    width: 100%;
    opacity: 0.95;
    line-height: 1.1;
    margin: 0 0 16px 0;
    padding: 0;
    background: none;
    box-shadow: none;
    mix-blend-mode: normal;
}
.post-meta-overlay {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.post-date-overlay,
.post-attorney-overlay,
.post-categories-overlay {
    background: rgba(0,0,0,0.18);
    border-radius: 16px;
    padding: 6px 18px;
    font-size: 1em;
    font-weight: 500;
    margin: 0 4px;
}

.post-content-container {
    background: #fff;   
    padding: 48px 24px 32px 24px !important;
    margin-top: -40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
} 

.breadcrumb-bar {
    background: #f4f4f5;
    padding: 16px 0 0 0;
    font-size: 1em;
    padding-bottom: 10px;
}
.breadcrumb-nav {
    font-family: 'Montserrat', sans-serif;
    color: #929497;
    font-size: 1em;
    letter-spacing: 0.03em;
}
.breadcrumb-nav a {
    color: #e2692b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.breadcrumb-nav a:hover {
    color: #002041;
}
.breadcrumb-nav span {
    color: #929497;
    font-weight: 500;
}

.share-block {
    margin: 32px 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
}
.share-block span {
    font-weight: 600;
    color: #222;
}
.share-link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    background: #f4f4f5;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.share-link.linkedin { color: #0077b5; }
.share-link.facebook { color: #1877f3; }
.share-link.twitter { color: #1da1f2; }
.share-link.email { color: #e2692b; }
.share-link.print { color: #929497; }
.share-link:hover {
    background: #e2692b;
    color: #fff !important;
}

.related-posts-block {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}
.related-posts-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: #e2692b;
    margin-bottom: 18px;
    text-align: center;
}
.related-posts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.related-post-item {
    background: #f4f4f5;
    border-radius: 6px;
    padding: 18px 22px;
    min-width: 200px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.related-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    color: #2b2b68;
    font-weight: 700;
    margin-bottom: 6px;
    text-decoration: none;
    transition: color 0.2s;
}
.related-post-title:hover {
    color: #e2692b;
}
.related-post-date {
    color: #929497;
    font-size: 0.95em;
}

.share-block-mobile {
    display: none;
}
@media (max-width: 700px) {
    .post-header-overlay .container {
        min-height: 180px;
        padding: 60px;
    }
    .post-title-overlay {
        font-size: 2rem;
    }
    .post-meta-overlay {
        font-size: 0.95rem;
        gap: 8px;
    }
    .related-posts-list {
        flex-direction: column;
        gap: 12px;
    }
    .related-post-item {
        min-width: 0;
        width: 100%;
    }
    .share-block {
        display: none !important;
    }
    .share-block-mobile {
        display: flex !important;
        gap: 12px;
        margin: 24px 0;
        justify-content: flex-start;
        align-items: center;
    }
    .share-block-mobile .share-link {
        padding: 8px;
        font-size: 1.5em;
        background: #f4f4f5;
        border-radius: 50%;
        min-width: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .share-block-mobile .share-link.linkedin { color: #0077b5; }
    .share-block-mobile .share-link.facebook { color: #1877f3; }
    .share-block-mobile .share-link.twitter { color: #1da1f2; }
    .share-block-mobile .share-link.email { color: #e2692b; }
    .share-block-mobile .share-link.print { color: #929497; }
    .share-block-mobile .share-link:hover {
        background: #e2692b;
        color: #fff !important;
    }
    .share-block-mobile .share-link i {
        margin: 0;
    }
}

.news-cta-section {
  background: #06213f;
  color: #fff;
  border-radius: 16px;
  padding: 48px 32px 40px 32px;
  margin: 64px auto 32px auto;
  text-align: center;
  max-width: 700px;
  box-shadow: 0 4px 32px rgba(6,33,63,0.08);
}
.news-cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.news-cta-section p {
  font-size: 1.15rem;
  margin-bottom: 28px;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #ea9036 0%, #e2692b 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 1.18rem;
  padding: 18px 44px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(234,144,54,0.18), 0 1.5px 6px rgba(0,0,0,0.08);
  letter-spacing: 0.11em;
  margin-top: 8px;
  border: none;
  outline: none;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #e2692b 0%, #ea9036 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(226,105,43,0.22), 0 2px 8px rgba(0,0,0,0.10);
  transform: scale(1.045);
  text-decoration: none;
}
 