/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *

 */

/* body font DM Sans (from google fonts) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@400&display=swap');
/* font Noto Serif (from google fonts) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500&display=swap');

body {
    font-family: 'DM Sans', sans-serif;
}

h1 {
    font-family: 'DM Serif Display', serif;
}

h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', sans-serif;
    font-weight: 400;
    word-break: break-word;
}

section ol {
    list-style: decimal;
    margin: 16px 0;
    padding: 0 0 0 40px;
}

section ul {
    list-style: disc;
    margin: 16px 0;
    padding: 0 0 0 40px;
}

#activities h3 {
    font-weight: 500;
}

 

.blog-content img.float-left {
    float: left;
    margin: 0 1rem 1rem 0;
}

.blog-content img.float-right {
    float: right;
    margin: 0 0 1rem 1rem;
}

/* Utility: clamp to two lines with ellipsis */
.two-line-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
