#wrapper {
    /* Ensure it fills available width on smaller screens, but respects max-width */
    width: 100%;

    /* Limit its width on larger screens for readability and aesthetics */
    max-width: 672px; /* Adjust this value based on your design preference */

    /* Center the content block if max-width is applied and screen is wider */
    margin-left: auto;
    margin-right: auto;

    /* Adjust internal padding as needed (reduces margins from content to div edge) */
    padding-left: 0px;
    padding-right: 0px;
}

/* Optional: Adjust padding for very small screens using a media query */
@media (max-width: 767px) {
    #wrapper {
        padding-left: 10px; /* Tighter padding on small mobiles */
        padding-right: 10px;
    }
}

#content {
    /* Ensure it fills available width on smaller screens, but respects max-width */
    width: auto;
    /* Limit its width on larger screens for readability and aesthetics */
    max-width: 100%; /* Adjust this value based on your design preference */
    box-sizing: border-box;
    /* Center the content block if max-width is applied and screen is wider */
    margin-left: auto;
    margin-right: auto;

    /* Adjust internal padding as needed (reduces margins from content to div edge) */
    padding-left: 0px;
    padding-right: 0px;
}

/* Optional: Adjust padding for very small screens using a media query */
@media (max-width: 767px) {
    #content {
        padding-left: 0px; /* Tighter padding on small mobiles */
        padding-right: 0px;
    }
}

img {
    max-width: 638px;/* Ensures images never exceed their parent's width */
    height: auto;    /* Maintains aspect ratio */
    display: block;  /* Removes extra space below images (optional, but good practice) */
}

#back-to-top {
    font-family: "Century-Supra", serif;
    font-size: 18px;
    font-weight: normal;
    white-space: nowrap; /* Prevents text from wrapping to the next line */
    min-width: fit-content; /* Ensures the button is at least wide enough for its content */
    padding: 10px 20px; /* Adjust padding to give it a nice, even shape */
    box-sizing: border-box; /* Ensures padding is included in the element's total width/height */
}
/* Styling for the form from our shortcode */
.contact-form-shortcode {
  /* For horizontal centering */
  display: block; /* Make sure it's a block element */
  margin: 0 auto; /* Auto left/right margins */
  
  /* Sizing */
  width: 90%;     /* Use a percentage for responsiveness */
  max-width: 600px; /* Set a max-width for larger screens */

  /* Optional styling to make it look nice */
  padding: 2rem;
  margin-top: 20px; /* Add some space above the form */
  margin-bottom: 20px; /* Add some space below the form */
}

/* Style the form elements for better spacing */
.contact-form-shortcode p {
  margin-bottom: 1rem;
}

.contact-form-shortcode label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-form-shortcode button {
  background-color: var(--link-color);
  color: var(--bg);
  padding: 12px 20px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
}

.contact-form-shortcode input,
.contact-form-shortcode textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

article.content ul li {
text-align: left;
line-height: 1.4;
font-size: clamp(1.1rem,.95rem + .4vw,1.2rem); 
}
