/**********************************************************
  GLOBAL LINK STYLE (clean by default, underline on hover)
**********************************************************/
a {
  color: inherit;                 /* match surrounding text by default */
  text-decoration: none;          /* no underline by default */
  transition: color .18s ease, text-decoration-color .18s ease;
}
a:hover,
a:focus {
  color: var(--egp-brown);        /* brown on hover/focus */
  text-decoration: underline;     /* show underline only on hover/focus */
  text-underline-offset: 3px;     /* nice breathing room */
  text-decoration-thickness: 1.5px;
}
/* keyboard focus visibility */
a:focus-visible {
  outline: 2px dashed var(--egp-brown);
  outline-offset: 2px;
}

/* Keep header menu styling exactly as you have it */
.site-navigation a {
  color: #fff !important;
  text-decoration: none !important;
}
.site-navigation a:hover,
.site-navigation .current-menu-item > a {
  text-decoration: none !important; /* you already use a bottom box-shadow accent */
}

/* Ensure buttons/CTAs never get underlines */
.wp-block-button__link,
.egp-pill,
.button,
button,
[role="button"],
.wp-block-button a {
  text-decoration: none !important;
}

/**********************************************************
  MONTH-WALL (archive grid) – UPSC CSE Daily CA & Daily CA MCQs
  – two columns desktop, one column mobile
**********************************************************/
.egp-month-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(340px,1fr));
  gap:28px;
  margin-top:10px;
}
.egp-month-card{
  background:#fffdf9;
  border:2px solid rgba(183,107,26,.35);
  border-radius:14px;
  padding:18px 20px;
  box-shadow:0 10px 26px rgba(183,107,26,.08);
}
.egp-month-title{
  margin:0 0 10px 0;
  font-weight:800;
  color:var(--egp-brown);
  font-size:20px;
  letter-spacing:.2px;
}
.egp-month-list{
  margin:0 0 0 1.15rem;
  padding:0;
}
.egp-month-list li{
  margin:.35rem 0;
}

/* Links inside the month lists: clean by default; brown+underline on hover */
.egp-month-link{
  font-weight:800;
  color: var(--egp-dark);         /* bold black as requested */
  text-decoration:none;
}
.egp-month-link:hover,
.egp-month-link:focus{
  color: var(--egp-brown);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Date chip after the link */
.egp-date{
  color:#6b6b6b;
  font-weight:600;
}

/* one column on small screens */
@media (max-width: 760px){
  .egp-month-grid{ grid-template-columns:1fr; }
}

/* Replace WP login logo with eGyanPeeth circular logo */
.login h1 a {
    background-image: url('https://egyanpeeth.com/wp-content/uploads/2025/10/Logo-1-e1759676630812.png') !important;
    height: 140px !important;
    width: 140px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    margin: 0 auto !important;
    padding-bottom: 0 !important;
}
