/* =============================================
   SharpMaster - Knife Sharpening Website
   Types Page Specific Styles
   ============================================= */

/* Types page uses common.css styles:
   - pros-cons (already in common.css)
   - angle-table (already in common.css)
   - table-container (already in common.css)
   - content-block
   - quote-section
*/

/* Types page specific adjustments */

/* Section images */
.section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Ensure proper spacing for angle table */
.angle-table {
    margin: 2rem 0;
}

.angle-table table {
    font-size: 0.95rem;
}

/* Quote section specific to types page */
.quote-section {
    background-color: #fafafa;
    border-left: 4px solid #e67e22;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.quote-section p {
    font-style: italic;
    margin-bottom: 0;
}

/* Text center utility for types page */
.text-center {
    text-align: center;
}

/* Tablet and up */
@media (min-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}
