/*
Theme Name: bosa-business-coach-child
Template: bosa-business-coach
*/
.site-content {
  padding-top: 10px;
  padding-bottom: 10px;
}
.breadcrumb-wrap {
  margin-bottom: 0 !important;
}
:root {
  --ash-gray: #cad2c5;
  --cambridge-blue: #84a98c;
  --hookers-green: #52796f;
  --dark-slate-gray: #354f52;
  --charcoal: #2f3e46;
}
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  color: #354f52;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
.entry-content h1 {
  border-left: 5px solid var(--cambridge-blue);
  padding-left: 0.75rem;
}
.entry-content h2 {
  border-left: 4px solid var(--hookers-green);
  padding-left: 0.6rem;
}
.entry-content blockquote {
  background: rgba(53, 79, 82, 0.4);
  border-left: 4px solid var(--cambridge-blue);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(132, 169, 140, 0.2);
}
.entry-content th {
  background: var(--dark-slate-gray);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem;
  text-align: center;
}
.entry-content td {
  background: rgba(47, 62, 70, 0.7);
  color: #fff;
  padding: 0.75rem;
  text-align: center;
  border-top: 1px solid rgba(132, 169, 140, 0.15);
}
.entry-content tr:hover td {
  background: rgba(82, 121, 111, 0.4);
}
.revoir-block {
  background: linear-gradient(145deg, var(--dark-slate-gray), var(--charcoal));
  border: 1px solid rgba(132, 169, 140, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.revoir-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(132, 169, 140, 0.3);
}
.revoir-block p {
  color: #fff;
}
.revoir-block img {
  border-radius: 12px;
  border: 1px solid rgba(132, 169, 140, 0.3);
  transition: transform 0.3s ease;
}
.revoir-block:hover img {
  transform: scale(1.05);
}
.revoir-block h3 {
  color: var(--cambridge-blue);
  font-weight: 600;
  margin-left: 1rem;
}
.revoir-block ul {
  list-style: none;
  margin: 1.2rem 0;
  padding-left: 0;
}
.revoir-block ul li {
  background: rgba(11, 43, 38, 0.6);
  border: 1px solid rgba(45, 157, 143, 0.25);
  color: #fff;
  border-radius: 12px;
  padding: 0.9rem 1rem 0.9rem 2.8rem;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.revoir-block ul li:not(:last-child) {
  margin-bottom: 10px;
}
.revoir-block ul li::before {
  content: "✔";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #2d9d8f;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 0 6px rgba(45, 157, 143, 0.6);
}
.revoir-block ul li:hover {
  background: rgba(45, 157, 143, 0.15);
  border-color: rgba(45, 157, 143, 0.5);
  transform: translateX(5px);
}
.entry-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cambridge-blue), transparent);
  margin: 2rem 0;
  opacity: 0.7;
}
.entry-content a {
  color: var(--cambridge-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(132, 169, 140, 0.3);
  transition: all 0.3s ease;
}
.entry-content a:hover {
  color: var(--ash-gray);
  border-bottom-color: var(--ash-gray);
}
.entry-content ul.list-group {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
  gap: 0.6rem;
}
.entry-content ul.list-group li {
  background: rgba(53, 79, 82, 0.5);
  border: 1px solid rgba(132, 169, 140, 0.25);
  color: #000;
  border-radius: 10px;
  padding: 0.8rem 1rem 0.8rem 2.6rem;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}
.entry-content ul.list-group li::before {
  content: "▸";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cambridge-blue);
  font-size: 1rem;
  opacity: 0.9;
}
.entry-content ul.list-group li:hover {
  background: rgba(82, 121, 111, 0.5);
  transform: translateX(4px);
}
.entry-content ol.count-list {
  counter-reset: section;
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
  gap: 0.8rem;
}
.entry-content ol.count-list li {
  counter-increment: section;
  background: rgba(47, 62, 70, 0.5);
  border: 1px solid rgba(132, 169, 140, 0.25);
  border-radius: 12px;
  padding: 1rem 1rem 1rem 3.2rem;
  color: #000;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.entry-content ol.count-list li:not(:last-child) {
  margin-bottom: 10px;
}
.entry-content ol.count-list li::before {
  content: counter(section);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--hookers-green);
  color: var(--ash-gray);
  font-size: 0.9rem;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(132, 169, 140, 0.4);
}
.entry-content ol.count-list li:hover {
  transform: translateX(5px);
  background: rgba(82, 121, 111, 0.6);
}
.corf-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.corf-list li {
  background: rgba(11, 43, 38, 0.7);
  border: 1px solid rgba(45, 157, 143, 0.3);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.corf-list li:not(:last-child) {
  margin-bottom: 10px;
}
.corf-list li:hover {
  background: rgba(45, 157, 143, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(45, 157, 143, 0.4);
  color: #000;
}
.corf-list li a {
  color: #2d9d8f;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.corf-list li a:hover {
  color: rgba(11, 43, 38, 0.7);
}
.corf-list li a::after {
  content: " 🎰 ";
  color: rgba(45, 157, 143, 0.6);
  font-size: 1rem;
}
