/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
.cf-layout {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  padding: 20px;
  align-items: flex-start;
}

.cf-main {
  flex: 2;
  line-height: 1.8;
  min-width: 0;
}

.cf-sidebar {
  flex: 1;
  min-width: 280px;
}

.return-card {
  border: 1px solid #ccc;
  padding: 12px;
  margin-bottom: 16px;
  background: #fff;
}

.cf-main h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

.cf-main h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.cf-main p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .cf-layout {
    display: block;
    padding: 16px;
  }

  .cf-main {
    margin-bottom: 32px;
  }

  .cf-sidebar {
    min-width: auto;
  }

  .cf-main h1 {
    font-size: 26px;
  }
  
}