.navbar-header .navbar-brand {
  padding: 0;
}

/* ============================================================
   Search results page
   ============================================================ */
.sr-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Page header */
.sr-page-header {
    margin-bottom: 32px;
    border-left: 4px solid #f2676b;
    padding-left: 16px;
}
.sr-page-title {
    font-size: 22px;
    font-weight: 800;
    color: #0A3152;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}
.sr-page-query {
    font-size: 16px;
    color: #767676;
    margin: 0;
}

/* Result cards */
.sr-list {
    margin: 0;
}
.sr-card {
    display: flex;
    flex-direction: row;
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 5px #e6e6e6;
    background: #fff;
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.sr-card:hover {
    box-shadow: 0 2px 14px rgba(0,0,0,.12);
}

/* Thumbnail — left 25%, fills full card height */
.sr-card-thumb {
    flex: 0 0 25%;
    display: block;
    overflow: hidden;
    position: relative;
    min-height: 220px;
}
.sr-card-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.sr-card:hover .sr-card-thumb img {
    transform: scale(1.04);
}
.sr-card-thumb-placeholder {
    position: absolute;
    inset: 0;
    background: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 48px;
}

/* Content area */
.sr-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 24px 0;
}

/* Meta row: category badge + date */
.sr-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.sr-card-cat {
    display: inline-block;
    background: #f2676b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 2px;
    text-decoration: none;
}
.sr-card-cat:hover {
    background: #00adef;
    color: #fff;
    text-decoration: none;
}
.sr-card-date {
    font-size: 12px;
    color: #767676;
}
.sr-card-date .fa {
    color: #f2676b;
    margin-right: 4px;
}

/* Title */
.sr-card-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.sr-card-title a {
    color: #0A3152;
    text-decoration: none;
}
.sr-card-title a:hover {
    color: #00adef;
}

/* Excerpt */
.sr-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
    flex-grow: 1;
}

/* Tags */
.sr-card-tags {
    font-size: 12px;
    color: #767676;
    margin-bottom: 10px;
}
.sr-card-tags .fa {
    color: #f2676b;
    margin-right: 4px;
}
.sr-card-tags a {
    color: #172755;
}
.sr-card-tags a:hover {
    color: #00adef;
}

/* Footer row: author + read more */
.sr-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e6e6e6;
    margin: auto -24px 0;
    padding: 12px 24px;
}
.sr-card-author {
    font-size: 13px;
    color: #555;
}
.sr-card-author .fa {
    color: #00adef;
    margin-right: 4px;
}
.sr-card-author a {
    color: #00adef;
}
.sr-card-readmore {
    background: #f2676b;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.sr-card-readmore:hover {
    background: #00adef;
    color: #fff;
    text-decoration: none;
}

/* Pagination */
.sr-pagination {
    margin-top: 16px;
}

/* ============================================================
   Search — no results state
   ============================================================ */
.sr-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 560px;
    margin: 0 auto;
}
.sr-empty-icon {
    font-size: 64px;
    color: #e6e6e6;
    margin-bottom: 20px;
    line-height: 1;
}
.sr-empty-title {
    font-size: 24px;
    font-weight: 800;
    color: #0A3152;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}
.sr-empty-text {
    font-size: 15px;
    color: #767676;
    line-height: 1.7;
    margin-bottom: 28px;
}
.sr-empty-input-group {
    margin-bottom: 20px;
}
.sr-empty-input-group .form-control {
    height: 46px;
    font-size: 15px;
    border-color: #e6e6e6;
}
.sr-empty-btn {
    background: #f2676b;
    color: #fff;
    font-weight: 700;
    height: 46px;
    padding: 0 20px;
    border: none;
    border-radius: 0;
    white-space: nowrap;
}
.sr-empty-btn:hover,
.sr-empty-btn:focus {
    background: #00adef;
    color: #fff;
}
.sr-empty-btn .fa {
    margin-right: 6px;
}
.sr-empty-back {
    display: inline-block;
    font-size: 14px;
    color: #00adef;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}
.sr-empty-back:hover {
    color: #0A3152;
    border-bottom-color: #0A3152;
    text-decoration: none;
}
.sr-empty-back .fa {
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 767px) {
    .sr-card {
        flex-direction: column;
    }
    .sr-card-thumb {
        flex: none;
        width: 100%;
        min-height: 180px;
        position: relative;
    }
    .sr-card-thumb img {
        position: static;
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    .sr-card-footer {
        margin: auto -24px 0;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Payment logos — we-accept section */
.we-accept ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.we-accept ul li {
    display: flex;
    margin: 0;
}
.pay-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    padding: 3px 4px;
    box-sizing: border-box;
}
.pay-logo-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}
.navbar-header .navbar-brand img {
  height: 50px;
}
.flight-list-v2 .divide-line-left {
  border-left: 1px solid #0A3152;
  padding-left: 15px;
}
.flight-list-v2 .airline-logo {
  max-width: 80px;
  max-height: 60px;
}
.flight-list-v2 .flight-list-footer .main-price {
  font-weight: bold;
  font-size: 18px;
  padding: 0 0 0 10px;
  vertical-align: middle;
}
.flight-list-v2 .flight-list-footer .book-btn {
  color: #ffffff;
  background: #F2676B;
  padding: 15px;
  margin-left: 20px;
  font-weight: bold;
}
.flight-list-v2 .stop-box {
  padding: 8px 10px;
  margin-left: 34%;
  width: 80px;
  position: relative;
  border: 1px solid #e6e6e6;
  z-index: -1;
  margin-top: 6px;
  text-align: center;
  font-size: 12px;
}
.flight-list-v2 .stop-box:before {
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  content: "";
  background: #ffffff;
  height: 10px;
  left: 42%;
  position: absolute;
  top: -6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
}
.flight-list-v2 .flight-time {
  position: relative;
  display: inline-block;
}
.flight-list-v2 .flight-time .upper-index {
  position: absolute;
  display: inline-block;
  top: 0;
  right: -15px;
  font-size: 12px;
}
.flight-list-v2 .stop {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #e6e6e6;
  margin-top: -8px;
  margin-left: 47%;
}
.flight-list-v2:hover .flight-list-footer .book-btn {
  background: #00ADEF;
}
.flight-listing .sort {
  margin-top: 30px;
  border-left: 1px solid #e6e6e6;
}
.flight-listing .sort-label {
  margin-top: 30px;
  text-align: right;
  font-size: 12px;
  padding-top: 12px;
}
.blog-header {
  background: url(../images/background-greece-top.jpg) no-repeat center center #0a9595;
  background-size: cover;
}
.flight-title {
  text-shadow: 1px 1px #0A3152;
}
.comment-body .comment-edit-link {
  margin-left: 10px;
}
.pagination a.page-numbers:hover {
  background: #00adef;
  color: #ffffff;
}
.pagination a.page-numbers:visited,
.pagination a:link {
  text-decoration: none;
}
.pagination .page-numbers {
  display: inline-block;
  color: #ffffff;
  background: #f2676b;
  letter-spacing: 1px;
  padding: 15px 10px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}
.pagination .current {
  background: #e6e6e6 none repeat scroll 0 0;
  font-weight: bold;
  display: inline-block;
  color: #07253f;
}
.pagination .screen-reader-text {
  display: none;
}
.post-box {
  position: relative;
  min-height: 540px;
}
.post-box .post-footer-filler {
  height: 51px;
  width: 100%;
}
.post-box .post-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.post-box .post-footer h5 {
  margin-top: 8px;
  margin-bottom: 8px;
}
/* Równa wysokość kart w rzędzie: min-height tylko ustawia dół — bez flexa środkowa karta
   z dłuższym excerptem i tak rośnie wyżej niż sąsiednie. */
.blog-post-cards-row {
  display: flex;
  flex-wrap: wrap;
}
.blog-post-cards-row > .col-md-4 {
  display: flex;
  flex-direction: column;
}
.blog-post-cards-row .post-box {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 540px;
}
.blog-post-cards-row .post-box .post-body {
  flex: 1 1 auto;
}
.blog-post-cards-row .post-box .post-footer-filler {
  display: none;
}
.blog-post-cards-row .post-box .post-footer {
  position: static;
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}
/* Jednolita wysokość miniatury nad treścią karty (kadrowanie cover) */
.blog-post-cards-row .post-box > a:first-of-type {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  height: 220px;
  line-height: 0;
  background: #e6e6e6;
}
.blog-post-cards-row .post-box > a:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* ==========================================================================
   Single Post — redesigned layout
   ========================================================================== */

/*
 * W single.php kontener ma .clear-padding (style.css) → padding: 0, więc na wąskim ekranie
 * treść klei się do krawędzi. Przywracamy standardowy boczny gutter Bootstrap (15px).
 */
body.single-post .row > .container.clear-padding {
  padding-left: 15px;
  padding-right: 15px;
}

.sp-layout {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.sp-layout-content {
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
}
.sp-layout-sidebar {
  flex: 0 0 320px;
  min-width: 0;
  overflow: hidden;
}
.sp-comments-container {
  padding-bottom: 40px;
}

/* --- Hero image --- */
.single-post-redesign .sp-hero {
  margin-bottom: 28px;
}
.single-post-redesign .sp-hero img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,49,82,.12);
}
.single-post-redesign .sp-hero-caption {
  margin: 6px 0 0;
  font-size: 12px;
  color: #bbb;
  text-align: right;
}
.single-post-redesign .sp-hero img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* --- Post header --- */
.single-post-redesign .sp-header {
  margin-bottom: 30px;
}
.single-post-redesign .sp-meta-top {
  margin-bottom: 12px;
}
.single-post-redesign .sp-category-badge {
  display: inline-block;
  background: #F2676B;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 12px;
  border-radius: 3px;
  margin-right: 6px;
  transition: background .2s;
}
.single-post-redesign .sp-category-badge:hover {
  background: #00adef;
  text-decoration: none;
  color: #fff;
}
.single-post-redesign .sp-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #0A3152;
  margin: 0 0 14px;
  text-transform: none;
  letter-spacing: -.2px;
}
.single-post-redesign .sp-meta-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13px;
  color: #767676;
}
.single-post-redesign .sp-meta-item i {
  color: #F2676B;
  margin-right: 4px;
  width: 14px;
  text-align: center;
}
.single-post-redesign .sp-meta-item a {
  color: #0A3152;
  transition: color .2s;
}
.single-post-redesign .sp-meta-item a:hover {
  color: #00adef;
  text-decoration: none;
}

/* --- Post content --- */
.single-post-redesign .sp-content {
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 30px;
}
.single-post-redesign .sp-content p {
  margin-bottom: 18px;
}
.single-post-redesign .sp-content h2,
.single-post-redesign .sp-content h3,
.single-post-redesign .sp-content h4 {
  color: #0A3152;
  font-weight: 700;
  margin: 28px 0 12px;
}
.single-post-redesign .sp-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 12px 0 18px;
}
.single-post-redesign .sp-content blockquote {
  border-left: 4px solid #F2676B;
  padding: 14px 20px;
  margin: 20px 0;
  background: #fafafa;
  font-style: italic;
  color: #555;
}

/* --- Footer bar (share + views) --- */
.single-post-redesign .sp-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 28px;
}
.single-post-redesign .sp-share {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-post-redesign .sp-share-label {
  font-size: 13px;
  font-weight: 600;
  color: #0A3152;
  margin-right: 4px;
}
.single-post-redesign .sp-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: opacity .2s;
}
.single-post-redesign .sp-share-btn:hover {
  opacity: .85;
  text-decoration: none;
  color: #fff;
}
.sp-share-fb  { background: #3b5998; }
.sp-share-tw  { background: #1da1f2; }
.sp-share-li  { background: #0077b5; }
.sp-share-mail { background: #0A3152; }

.single-post-redesign .sp-views {
  font-size: 13px;
  color: #999;
}
.single-post-redesign .sp-views i {
  margin-right: 4px;
}

/* --- Disclaimer (single post, zamiast poprz./nast. wpis) --- */
.single-post-redesign .sp-disclaimer {
  font-size: 12px;
  line-height: 1.55;
  color: #8a9199;
  margin-bottom: 30px;
  padding: 14px 16px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #eceeef;
}

/* --- Author wrapper override --- */
.single-post-redesign .author-wrapper {
  border-radius: 6px;
  margin-bottom: 30px;
}

/* ==========================================================================
   Sidebar — single post
   ========================================================================== */

.sp-sidebar {
  padding-left: 12px;
}
.sp-sidebar-widget {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(10,49,82,.05);
}
.sp-sidebar-heading {
  font-size: 15px;
  font-weight: 700;
  color: #0A3152;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F2676B;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.sp-sidebar-heading i {
  color: #F2676B;
  margin-right: 6px;
}

/* Recent posts list */
.sp-sidebar-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-sidebar-post-item {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.sp-sidebar-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sp-sidebar-post-item a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
}
.sp-sidebar-post-item a:hover .sp-sidebar-post-title {
  color: #00adef;
}
.sp-sidebar-thumb {
  width: 60px;
  height: 48px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.sp-sidebar-thumb-empty {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 18px;
}
.sp-sidebar-post-info {
  flex: 1;
  min-width: 0;
}
.sp-sidebar-post-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0A3152;
  line-height: 1.4;
  transition: color .2s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sp-sidebar-post-date {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 3px;
}
.sp-sidebar-post-date i {
  margin-right: 3px;
}

/* Hit cards */
.sp-sidebar-hit-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-sidebar-hit-card {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: box-shadow .2s, transform .15s;
  text-decoration: none;
}
.sp-sidebar-hit-card:hover {
  box-shadow: 0 4px 14px rgba(10,49,82,.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.sp-hit-thumb {
  height: 110px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sp-hit-price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #F2676B;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
}
.sp-hit-title {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0A3152;
  line-height: 1.35;
}

/* Destinations list */
.sp-dest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-dest-list li {
  border-bottom: 1px solid #f0f0f0;
}
.sp-dest-list li:last-child {
  border-bottom: none;
}
.sp-dest-link {
  display: flex;
  align-items: center;
  padding: 10px 4px;
  color: #0A3152;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s, background .15s;
  text-decoration: none;
  border-radius: 4px;
}
.sp-dest-link:hover {
  color: #00adef;
  background: #f8f9fa;
  text-decoration: none;
}
.sp-dest-emoji {
  font-size: 20px;
  margin-right: 10px;
  line-height: 1;
}
.sp-dest-name {
  flex: 1;
}
.sp-dest-arrow {
  color: #ccc;
  font-size: 16px;
  transition: color .2s;
}
.sp-dest-link:hover .sp-dest-arrow {
  color: #00adef;
}

/* CTA box */
.sp-sidebar-cta {
  border: none;
  padding: 0;
  box-shadow: none;
}
.sp-cta-box {
  background: linear-gradient(135deg, #0A3152 0%, #1B2D4B 100%);
  color: #fff;
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}
.sp-cta-icon {
  font-size: 36px;
  color: #F2676B;
  margin-bottom: 10px;
  display: block;
}
.sp-cta-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.sp-cta-box p {
  font-size: 13px;
  opacity: .85;
  margin: 0 0 18px;
  line-height: 1.5;
}
.sp-cta-btn {
  display: inline-block;
  background: #F2676B;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s;
}
.sp-cta-btn:hover {
  background: #00adef;
  color: #fff;
  text-decoration: none;
}

/* Override old single-post-wrapper for redesign */
.single-post-redesign.single-post-wrapper {
  margin-top: 0;
}
.single-post-redesign .blog-title {
  display: none;
}
.single-post-redesign::after {
  content: "";
  display: table;
  clear: both;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .sp-layout {
    flex-direction: column;
    gap: 0;
  }
  .sp-layout-sidebar {
    flex-basis: auto;
  }
  .sp-sidebar {
    padding-left: 0;
    margin-top: 30px;
  }
  .single-post-redesign .sp-title {
    font-size: 24px;
  }
  .single-post-redesign .sp-nav {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .single-post-redesign .sp-hero img {
    max-height: 260px;
  }
  .single-post-redesign .sp-title {
    font-size: 20px;
  }
  .single-post-redesign .sp-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Comments section — redesigned
   ========================================================================== */

.sp-comments-section {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

/* Header */
.sp-comments-header {
  margin-bottom: 24px;
}
.sp-comments-title {
  font-size: 20px;
  font-weight: 700;
  color: #0A3152;
  margin: 0;
}
.sp-comments-title i {
  color: #F2676B;
  margin-right: 8px;
  font-size: 22px;
}
.sp-comments-empty {
  color: #999;
  font-size: 14px;
  font-style: italic;
  padding: 20px 0;
}

/* Comment list */
.sp-comments-list {
  margin-bottom: 30px;
}
.sp-comments-list ol,
.sp-comments-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Single comment */
.sp-comment {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sp-comment:last-child {
  border-bottom: none;
}

/* Avatar */
.sp-comment-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.sp-comment-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #e9ecef;
}

/* Comment body */
.sp-comment-main {
  flex: 1;
  min-width: 0;
}
.sp-comment-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 6px;
}
.sp-comment-author {
  font-size: 14px;
  font-weight: 700;
  color: #0A3152;
}
.sp-comment-author a {
  color: #0A3152;
  text-decoration: none;
}
.sp-comment-author a:hover {
  color: #00adef;
}
.sp-comment-author-badge {
  color: #00adef;
  font-size: 13px;
  margin-left: 4px;
}
.sp-comment-date {
  font-size: 12px;
  color: #999;
  text-decoration: none;
  transition: color .2s;
}
.sp-comment-date:hover {
  color: #00adef;
  text-decoration: none;
}
.sp-comment-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 8px;
}
.sp-comment-text p {
  margin: 0 0 8px;
}
.sp-comment-text p:last-child {
  margin-bottom: 0;
}
.sp-comment-moderation {
  font-size: 12px;
  color: #e0a800;
  font-style: italic;
  margin: 6px 0 0;
}
.sp-comment-moderation i {
  margin-right: 4px;
}

/* Actions (reply, edit) */
.sp-comment-actions {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.sp-comment-actions a,
.sp-comment-actions .comment-reply-link {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-decoration: none;
  transition: color .2s;
}
.sp-comment-actions a:hover,
.sp-comment-actions .comment-reply-link:hover {
  color: #F2676B;
  text-decoration: none;
}
.sp-comment-actions i {
  margin-right: 3px;
}

/* Threaded / nested replies */
.sp-comment .children {
  list-style: none;
  padding: 0 0 0 64px;
  margin: 0;
}
.sp-comments-list .children .sp-comment {
  border-bottom: 1px solid #f5f5f5;
}
.sp-comments-list .depth-2 .sp-comment-avatar img,
.sp-comments-list .depth-3 .sp-comment-avatar img {
  width: 40px;
  height: 40px;
}
.sp-comments-list .depth-2 .sp-comment-avatar,
.sp-comments-list .depth-3 .sp-comment-avatar {
  width: 40px;
  height: 40px;
}

/* Comment form */
.sp-comment-form-wrap {
  margin-top: 32px;
  padding: 28px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.sp-comment-form-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A3152;
  margin: 0 0 20px;
}
.sp-comment-form-title i {
  color: #F2676B;
  margin-right: 8px;
}

/* Form layout */
.sp-comment-form-wrap .comment-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}
.sp-form-group {
  margin-bottom: 16px;
}
.sp-form-half {
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
}
.sp-form-full {
  flex: 1 1 100%;
}
.sp-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0A3152;
  margin-bottom: 6px;
}
.sp-form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #dde1e5;
  border-radius: 6px;
  background: #fff;
  color: #333;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.sp-form-control:focus {
  border-color: #00adef;
  box-shadow: 0 0 0 3px rgba(0,173,239,.1);
  outline: none;
}
textarea.sp-form-control {
  resize: vertical;
  min-height: 100px;
}
.sp-form-control::placeholder {
  color: #b0b8c1;
}

/* Submit */
.sp-form-submit {
  flex: 1 1 100%;
  margin-top: 4px;
}
.sp-comment-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F2676B;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s;
  text-transform: none;
  letter-spacing: .3px;
}
.sp-comment-submit:hover {
  background: #00adef;
}
.sp-comment-submit i {
  font-size: 13px;
}

/* Comment notes & logged-in-as — smaller, softer */
.sp-comment-form-wrap .comment-notes,
.sp-comment-form-wrap .logged-in-as {
  flex: 1 1 100%;
  font-size: 12px;
  color: #999;
  margin-bottom: 14px;
}
.sp-comment-form-wrap .comment-notes a,
.sp-comment-form-wrap .logged-in-as a {
  color: #00adef;
}

/* Reply form (inline) */
#respond .sp-comment-form-wrap {
  margin-top: 16px;
}

/* WP cancel reply link */
#cancel-comment-reply-link {
  font-size: 12px;
  color: #F2676B;
  margin-left: 12px;
}

/* Override old styles so they don't bleed through */
.single-post-redesign .comment-box,
.single-post-redesign .comment-wrapper,
.single-post-redesign .leave-comment {
  all: unset;
  display: block;
}
.sp-comment img {
  margin: 0 !important;
  max-width: none !important;
}

/* Responsive */
@media (max-width: 767px) {
  .sp-comment {
    gap: 12px;
  }
  .sp-comment-avatar,
  .sp-comment-avatar img {
    width: 40px;
    height: 40px;
  }
  .sp-comment .children {
    padding-left: 40px;
  }
  .sp-comment-form-wrap {
    padding: 20px 16px;
  }
  .sp-form-half {
    flex: 1 1 100%;
  }
}

/* --- Blog: pusta strona tagu / 404 (centrum, jak reszta layoutu) --- */
.blog-empty-flow {
  padding: 36px 0 56px;
  background: #f4f6f8;
}
.blog-empty-center {
  max-width: 640px;
  margin: 0 auto;
  padding: 44px 36px 40px;
  text-align: center;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(10, 49, 82, 0.08);
}
.blog-empty-center__icon {
  font-size: 42px;
  color: #F2676B;
  line-height: 1;
  margin-bottom: 18px;
}
.blog-empty-center__title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0A3152;
  margin: 0 0 14px;
  line-height: 1.25;
}
.blog-empty-center__text {
  font-size: 16px;
  line-height: 1.55;
  color: #767676;
  margin: 0 0 28px;
}
.blog-empty-center__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
}
.blog-empty-center__btn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 6px;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.blog-empty-center__btn--primary {
  background: #F2676B;
  color: #fff;
}
.blog-empty-center__btn--primary:hover {
  background: #e0555a;
  color: #fff;
}
.blog-empty-center__btn--secondary {
  background: transparent;
  color: #0A3152;
  border: 2px solid #0A3152;
}
.blog-empty-center__btn--secondary:hover {
  background: #0A3152;
  color: #fff;
}
@media (max-width: 767px) {
  .blog-empty-center {
    padding: 32px 20px 28px;
    margin-left: 12px;
    margin-right: 12px;
  }
  .blog-empty-center__title {
    font-size: 22px;
  }
  .blog-empty-center__actions {
    flex-direction: column;
  }
  .blog-empty-center__btn {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */