/* === CATEGORY PAGE TEMPLATE === */

.custom-category-wrapper {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 60px 0;
}

.category-mainWrap {
  position: relative;
}

.category-mainWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  /* adjust to match your design */
  background: #f2f2f2;
  /* light grey similar to screenshot */
  z-index: -1;

  /* The diagonal shape */
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0 85%);
}

.back-to-blog {
  display: block;
  margin-bottom: 20px;
  width: 150px;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.category-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
}

.category-search-form {
  margin-bottom: 40px;
}

.category-search-input {
  width: 100%;
  padding: 18px 25px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.article-count {
  text-align: right;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

/* Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.category-card {
  display: flex;
  flex-direction: column;
  height: 680px;
  width: 100%;
}

.card-image img {
  width: 100%;
  height: 250px;
  border-radius: 6px;
  object-fit: cover;
}

/* Meta */
.card-meta {
  margin-top: 12px;
}

.card-category {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Title */
.card-title {
  font-size: 20px;
  font-weight: 800;
  margin: 10px 0;
  line-height: 1.3;
}

.card-title a {
  color: #000;
  text-decoration: none;
}

/* Excerpt */
.card-excerpt {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Read More button */
.read-more-btn {
  padding: 14px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 150px;
  text-align: center;
  cursor: pointer;
}

.read-more-btn:hover {
  color: #000;
  border: 1px solid #000;
  background: #fff;
}

/* Pagination */
.pagination-wrapper {
  margin-top: 40px;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* === HOVER EFFECT === */

.hover-container {
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

/* Icon */
.hover-icon {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

/* Trigger hover effects */
.hover-container:hover .hover-overlay {
  opacity: 1;
}

.hover-container:hover .hover-icon {
  opacity: 1;
  transform: translateY(0);
}

/* === FEATURED BLOG PAGE TEMPLATE === */

.featured-blog-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Hero Section */
.fb-hero-section {
  /* background: #fff; */
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}

.fb-hero-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.fb-hero-image {
  flex: 1.2;
}

.fb-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fb-hero-content {
  flex: 1;
}

.fb-category-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 15px;
  font-weight: 600;
}

.fb-hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
}

.fb-hero-excerpt {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.fb-read-more {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 15px 30px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fb-read-more:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/* Sub Featured (Grey Band) */
.fb-sub-featured-section {
  background: #f4f4f4;
  padding: 80px 0;
  position: relative;
  margin-top: -110px;
  z-index: 0;
  /* Skew the entire section */
  transform: skewY(2deg);
}

.fb-sub-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  /* Un-skew the content */
  transform: skewY(-2deg);
}

.fb-sub-card {
  display: flex;
  gap: 20px;
  align-items: stretch;
  height: 150px;
  overflow: hidden;
}

.fb-sub-image {
  flex: 0 0 150px;
}

.fb-sub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.fb-sub-content {
  flex: 1;
}

.fb-sub-title {
  font-size: 18px;
  font-weight: 800;
  margin: 5px 0 10px;
  text-transform: uppercase;
  line-height: 1.3;
}

.fb-sub-title a {
  color: #000;
  text-decoration: none;
}

.fb-sub-excerpt {
  font-size: 14px;
  color: #666;
}

/* Category Section */
.fb-category-section {
  padding: 80px 0;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.fb-category-section+.fb-category-section {
  border-top: 2px solid #ccc;
}

.fb-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  /* border-bottom: 2px solid #000; Removed to match image cleaner look */
  padding-bottom: 10px;
}

.fb-section-title {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

.fb-view-all {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fb-view-all:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.fb-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fb-grid-card {
  display: flex;
  flex-direction: column;
}

.fb-grid-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.fb-grid-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.fb-grid-title a {
  color: #000;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .fb-hero-inner {
    flex-direction: column;
  }

  .fb-sub-inner {
    grid-template-columns: 1fr;
  }

  .fb-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fb-sub-featured-section {
    clip-path: none;
    /* Simplify on mobile */
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .fb-category-grid {
    grid-template-columns: 1fr;
  }
}

/* === SINGLE POST TEMPLATE === */

.single-post-article {
  width: 100%;
}

/* Hero Section */
.single-post-hero {
  background: #f4f4f4;
  padding: 60px 0;
}

.single-post-hero-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.single-post-hero-content {
  padding-right: 20px;
}

.single-post-tag {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 20px;
  font-weight: 600;
}

.single-post-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #000;
}

.single-post-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.single-post-hero-image {
  position: relative;
}

.single-post-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Content Section */
.single-post-content-wrapper {
  max-width: 900px;
  width: 90%;
  margin: 60px auto;
}

.single-post-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.post-author {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.post-date {
  font-size: 14px;
  color: #666;
}

.single-post-subheader {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
  text-transform: uppercase;
}

.single-post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.single-post-content p {
  margin-bottom: 20px;
}

.single-post-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #000;
}

.single-post-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: #000;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.single-post-content li {
  margin-bottom: 10px;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 30px 0;
}

.single-post-content blockquote {
  border-left: 4px solid #000;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
}

/* Post Navigation */
.post-navigation {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation a {
  text-decoration: none;
  color: #000;
  display: block;
  transition: all 0.3s ease;
}

.post-navigation a:hover {
  color: #666;
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 8px;
}

.post-navigation .nav-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .single-post-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-post-title {
    font-size: 36px;
  }

  .post-navigation .nav-links {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .single-post-title {
    font-size: 28px;
  }

  .single-post-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* === TAGS SECTION === */
.single-post-tags-section {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  margin: 40px 0;
  font-size: 16px;
  color: #333;
}

.tags-label {
  font-weight: 800;
  text-transform: uppercase;
  margin-right: 10px;
  letter-spacing: 1px;
  color: #000;
}

.tag-link {
  color: #333;
  text-decoration: underline;
  font-weight: 500;
}

.tag-link:hover {
  color: #000;
}

/* === EXPERT CARD === */
.expert-card-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.expert-header {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
  color: #000;
}

.expert-card {
  display: flex;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.expert-image {
  flex: 0 0 200px;
}

.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expert-details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-name {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 5px;
  letter-spacing: 1px;
  color: #000;
}

.expert-title-text {
  font-size: 14px;
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
}

.expert-bio {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
}

.expert-phone {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === RELATED POSTS SECTION === */
.related-posts-section {
  background: #f4f4f4;
  padding: 80px 0 160px 0;
  margin-top: 0;
  margin-bottom: -80px;
}

.related-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.related-title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: #000;
}

.related-btn {
  color: #fff;
  background: #000;
  border: 1px solid #000;
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.related-btn:hover {
  background: #fff;
  color: #000;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.related-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-tag {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #444;
  margin-bottom: 10px;
  display: block;
}

.related-post-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.related-post-title a {
  color: #000;
  text-decoration: none;
}

.related-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.related-read-more {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 0;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.related-read-more:hover {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expert-card {
    flex-direction: column;
  }

  .expert-image {
    flex: auto;
    height: 250px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* === CTA CALLOUT BLOCK === */
.cta-callout-block {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
  display: flex;
  /* Ensure centering if needed */
  align-items: center;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 16, 40, 0.85);
  /* Deep blue/black overlay */
  z-index: 2;
}

.cta-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

h2.cta-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 20px;
}

.cta-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #fff;
  cursor: pointer;
}

.cta-button:hover {
  background: transparent;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-callout-block {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 20px;
  }
}

/* === DIVI CONTACT FORM === */
.et_pb_contact {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.et_pb_contact_form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Field containers */
.et_pb_contact_field {
  margin: 0 !important;
}

.et_pb_contact_field_half {
  flex: 1;
  min-width: calc(50% - 10px);
}

.et_pb_contact_field:not(.et_pb_contact_field_half) {
  flex: 1 1 100%;
}

/* Labels */
.et_pb_contact_form_label {
  display: none;
}

/* Input fields and textarea */
.et_pb_contact input.input,
.et_pb_contact textarea.input {
  width: 100%;
  padding: 20px;
  background: #e8e8e8;
  border: none;
  font-size: 16px;
  color: #333;
}

.et_pb_contact textarea.et_pb_contact_message {
  min-height: 200px;
  resize: vertical;
}

/* Bottom container with captcha and submit */
.et_contact_bottom_container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.et_pb_contact_right {
  display: flex;
  align-items: center;
}

.et_pb_contact_captcha_question {
  font-size: 16px;
  margin-right: 10px;
}

.et_pb_contact_captcha {
  width: 60px;
  padding: 10px;
  background: #e8e8e8;
  border: none;
  text-align: center;
}

/* Submit button */
.et_pb_contact_submit {
  background: #000;
  color: #fff;
  padding: 15px 40px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.et_pb_contact_submit:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .et_pb_contact_field_half {
    min-width: 100%;
  }

  .et_contact_bottom_container {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* === HUBSPOT FORM STYLES === */
div[data-hubspot-form] {
  max-width: 50%;
  margin: 0 auto;
}

/* Container */
.hsfc-Form {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Rows (Field Groups) */
.hsfc-Row {
  display: flex !important;
  /* Force flex for 2-col */
  gap: 20px;
  margin-bottom: 20px;
}

/* Field Wrappers */
.hsfc-Row>div {
  flex: 1;
  min-width: 0;
  /* Prevent overflow */
}

/* Inputs */
.hsfc-TextInput,
.hsfc-TextareaInput,
.hsfc-PhoneInput input {
  width: 100%;
  padding: 20px;
  background: #e8e8e8;
  border: none;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  /* Ensure padding doesn't break width */
}

.hsfc-TextareaInput {
  min-height: 200px;
  resize: vertical;
}

/* Labels */
.hsfc-FieldLabel {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
}

/* Submit Button */
.hsfc-Button {
  background: #000;
  color: #fff;
  padding: 15px 40px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.hsfc-Button:hover {
  background: #333;
}

/* Phone Field Special Handling */
.hsfc-PhoneInput {
  display: flex;
}

.hsfc-PhoneInput__FlagAndCaret {
  background: #e8e8e8;
  padding: 0 15px;
  display: flex;
  align-items: center;
  margin-right: 1px;
  /* visual separation */
}

/* Responsive */
@media (max-width: 768px) {
  .hsfc-Row {
    flex-direction: column;
  }
}

/* === SINGLE POST FOOTER DIVIDER OVERRIDE === */

/* === CATEGORY FILTER UI === */
.category-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.category-search-form {
  margin-bottom: 0;
  /* Remove bottom margin inside toolbar */
  flex-grow: 1;
  /* Allow search to take up space */
}

.category-filter-bar {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tag-filter-dropdown {
  padding: 18px 15px 18px 40px;
  /* Left padding space for arrow */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  min-width: 200px;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 15px center;
  cursor: pointer;
}

.clear-filter-btn {
  color: #d9534f;
  /* Reddish for clear action */
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.clear-filter-btn:hover {
  text-decoration: underline;
  color: #c9302c;
}