* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    min-height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: black;
    background-attachment: fixed;
}

.left-panel {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.right-panel {
    background: transparent;
}

.right-panel img {
    display: none;
}

.whiteboard-container {
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.whiteboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.whiteboard-instruction {
    color: #666;
    font-style: italic;
    text-align: left;
    margin: 0;
    font-size: 0.8rem;
}

#whiteboard {
    flex-grow: 1;
    width: 100%;
    cursor: crosshair;
}

.whiteboard-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px;
}

#clear-board, #download-board {
    background-color: #dc187a;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

#clear-board:hover, #download-board:hover {
    background-color: #b01462;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 60px 60px 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

p, ul, ol {
    margin-bottom: 20px;
}

ul, ol {
    padding-left: 40px;
}

a {
    color: #dc187a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.nav-links a {
    color: #ffffff;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a.active {
    color: #dc187a;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

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

.highlight {
    background: #dc187a;
    color: #ffffff;
    padding: 2px 4px;
    font-weight: 500;
}

ol li em {
    font-style: italic;
}

sup a {
    color: #dc187a;
    text-decoration: none;
    font-size: 0.7em;
    vertical-align: super;
}

sup a:hover {
    text-decoration: underline;
}

.date-stamp {
    color: #dc187a;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 20px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-preview {
    display: flex;
    align-items: start;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 20px 20px 0;
    border-radius: 8px;
}

.blog-thumbnail {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border-top: 5px solid #dc187a;
    margin-top:10px;
}

.blog-preview-content {
    flex-grow: 1;
}

.blog-preview-content h2 {
    margin-bottom: 10px;
}

.blog-preview-content h2 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-content h2 a:hover {
    color: #dc187a;
}

.blog-preview-content p {
    color: #cccccc;
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        overflow-x: hidden;
    }
    
    .left-panel, .right-panel {
        padding: 20px;
        overflow-x: hidden;
    }

    .blog-content {
        padding: 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .blog-preview {
        flex-direction: column;
    }

    .blog-thumbnail {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    figure {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

blockquote {
    border-left: 4px solid #dc187a;
    padding: 10px 15px 10px 20px;
    font-style: italic;
    color: #cccccc;
    margin: 20px 0;
    border-radius: 4px;
    position: relative;
    font-size: 1.2em;
    line-height: 1.8;
}

blockquote::before {
    content: '"';
    font-size: 2em;
    color: #dc187a;
    position: absolute;
    left: -15px;
    top: -10px;
    opacity: 0.2;
}

.stat-callout {
    text-align: center;
    border: none;
    background: #000000;
    border-radius: 12px;
    padding: 30px 20px;
    margin: 30px 0;
}

.stat-callout::before {
    display: none;
}

.big-number {
    font-size: 4rem;
    font-weight: bold;
    color: #dc187a;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: #ffffff;
    font-style: normal;
    line-height: 1.4;
}
