/*
Theme Name: feminine-mentor-child
Template: feminine-mentor
*/
/* 🎰 Modern Casino Affiliate Landing CSS */
:root {
  --oxford-blue: #0a1128;
  --penn-blue: #001f54;
  --indigo-dye: #034078;
  --cerulean: #1282a2;
  --white: #fefcfb;
}
.les-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.les-table {
  background: var(--indigo-dye);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.les-table:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(18, 130, 162, 0.5);
}
.les-img img {
  max-width: 160px;
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
}
.les-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.les-bonus {
  color: #d8f4ff;
  margin-bottom: 1.2rem;
}
.les-start {
  display: inline-block;
  background: var(--cerulean);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(18, 130, 162, 0.4);
}
.les-start:hover {
  background: #16a8c7;
  box-shadow: 0 0 20px rgba(18, 130, 162, 0.6);
  transform: scale(1.05);
}
h2.wp-block-heading {
  margin-top: 3rem;
  color: var(--cerulean);
  border-left: 5px solid var(--cerulean);
  padding-left: 0.8rem;
  font-weight: 700;
}
.wp-block-table {
  overflow-x: auto;
  border-collapse: collapse;
  width: 100%;
  margin: 2rem 0;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--indigo-dye);
}
.wp-block-table th,
.wp-block-table td {
  padding: 0.9rem 1rem;
  text-align: center;
  border: 1px solid var(--indigo-dye);
}
.wp-block-table th {
  background: var(--cerulean);
  color: var(--white);
  font-weight: 700;
}
.wp-block-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.05);
}
.wp-block-table tr:hover td {
  background: rgba(18, 130, 162, 0.15);
}
.tm-block {
  background: linear-gradient(145deg, #0e1520 0%, #101318 100%);
  border: 1px solid rgba(2, 164, 232, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 24px 28px;
  color: #e5f3ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tm-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 164, 232, 0.3);
}
.tm-block h3.wp-block-heading {
  color: #02a4e8;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(2, 164, 232, 0.5);
  padding-bottom: 4px;
  text-shadow: 0 0 6px rgba(2, 164, 232, 0.5);
}
.tm-block p {
  color: #d7e9f9;
  margin: 0;
}
.tm-list {
  list-style: none;
}
.tm-list li,
.num-list li,
.help-list li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.4rem;
}
.tm-list li::before {
  content: "🎯";
  position: absolute;
  left: -10px;
  color: var(--cerulean);
}
.num-list {
  counter-reset: num;
  list-style: none;
}
.num-list li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  left: -10px;
  color: var(--cerulean);
  font-weight: 700;
  font-size: 17px;
}
.help-list {
  list-style: none;
}
.help-list li::before {
  content: "💬";
  position: absolute;
  left: -10px;
  color: var(--cerulean);
}
blockquote {
  border-left: 5px solid var(--cerulean);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #0a6493;
  border-radius: 10px;
}
.entry-footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
