img.alignright {
	float: right;
	margin: 0 0 1em 1em;
}
img.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

/* --- Layout --- */

.aw-tabs {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
/* Media query to stack columns on smaller screens */
@media (max-width: 768px) {
  .aw-tabs {
    /* Changes to a single column layout for viewports <= 768px */
    grid-template-columns: 1fr;
  }
}

/* --- Sidebar (tabs) --- */

.aw-tabs-nav {
  display: flex;
  flex-direction: column;
}

/* Base tab button */
.aw-tab-btn {
  background: #E8E3DB;
  border: none;
	padding: 20px;
	margin: 0 0 5px;
  text-align: left;
  cursor: pointer;

  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;

  color: #555555;
  transition: color 0.15s ease, font-weight 0.15s ease;

	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Hover state */
.aw-tab-btn:hover {
  color: #555555;
}

/* Active tab */
.aw-tab-btn.active {
  color: #111111;
  font-weight: 500;
}

/* --- Content area --- */

.aw-tabs-content {
  max-width: 700px;
}

/* Panels */
.aw-tab-panel {
  display: none;
}

.aw-tab-panel.active {
  display: block;
}

/* Typography inside content (matches artist page feel) */
.aw-tab-panel p {
  margin: 0 0 1.2em;
}

.aw-tab-panel p:last-child {
  margin-bottom: 0;
}

.aw-tab-panel a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aw-tab-panel a:hover {
  color: #555555;
}
