.rp-main {
  padding: 36px 0 60px;
}

.rp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rp-breadcrumb a,
.rp-breadcrumb span {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.rp-breadcrumb a:hover {
  color: #202020;
}

.rp-breadcrumb__current {
  color: #202020 !important;
  font-weight: 500;
}

.rp-title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #072561;
  margin: 0 0 32px 0;
}

.rp-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.rp-sidebar {
  flex: 0 0 304px;
  min-width: 304px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rp-sidebar__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #202020;
  line-height: 1.4;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rp-sidebar__item:last-child {
  border-bottom: none;
}

.rp-sidebar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #aaa;
}

.rp-sidebar__item:hover {
  background-color: #f5f5f5;
}

.rp-sidebar__item--active {
  background-color: #fb8004;
  border-color: #fb8004;
  color: #fff;
}

.rp-sidebar__item--active svg {
  color: #fff;
}

.rp-sidebar__item--active:hover {
  background-color: #e07203;
}

.rp-content {
  flex: 1;
}

.rp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rp-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 12px;
  background-color: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.rp-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.rp-card__img {
  height: 240px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
  margin-bottom: 14px;
}

.rp-card__caption {
  background-color: #fff;
  padding: 0 4px 4px;
}

.rp-card__caption p {
  margin: 0;
  color: #202020;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.rp-more {
  margin-top: 24px;
}

.rp-more__link {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: #fb8004;
  color: #fff;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.rp-more__link:hover {
  background-color: #e07203;
}
