diff --git a/src/components/PhotoPack/PhotoPack.svelte b/src/components/PhotoPack/PhotoPack.svelte
index 70a4d363..50ebe903 100644
--- a/src/components/PhotoPack/PhotoPack.svelte
+++ b/src/components/PhotoPack/PhotoPack.svelte
@@ -106,7 +106,7 @@
aria-labelledby="{id}-figure-{ri}-{i}"
>
+
+
+
+
diff --git a/src/scss/tokens/layout/_main.scss b/src/scss/tokens/layout/_main.scss
index f2d99b7d..7717c0b1 100644
--- a/src/scss/tokens/layout/_main.scss
+++ b/src/scss/tokens/layout/_main.scss
@@ -2,4 +2,6 @@
@forward 'box-sizing';
@forward 'display';
@forward 'floats';
+@forward 'object-fit';
+@forward 'object-position';
@forward 'position';
diff --git a/src/scss/tokens/layout/_object-fit.scss b/src/scss/tokens/layout/_object-fit.scss
new file mode 100644
index 00000000..31c1cd32
--- /dev/null
+++ b/src/scss/tokens/layout/_object-fit.scss
@@ -0,0 +1,30 @@
+.object-contain {
+ object-fit: contain;
+}
+.object-cover {
+ object-fit: cover;
+}
+.object-fill {
+ object-fit: fill;
+}
+.object-none {
+ object-fit: none;
+}
+.object-scale-down {
+ object-fit: scale-down;
+}
+.\!object-contain {
+ object-fit: contain !important;
+}
+.\!object-cover {
+ object-fit: cover !important;
+}
+.\!object-fill {
+ object-fit: fill !important;
+}
+.\!object-none {
+ object-fit: none !important;
+}
+.\!object-scale-down {
+ object-fit: scale-down !important;
+}
diff --git a/src/scss/tokens/layout/_object-position.scss b/src/scss/tokens/layout/_object-position.scss
new file mode 100644
index 00000000..1bec8af1
--- /dev/null
+++ b/src/scss/tokens/layout/_object-position.scss
@@ -0,0 +1,54 @@
+.object-bottom {
+ object-position: bottom;
+}
+.object-center {
+ object-position: center;
+}
+.object-left {
+ object-position: left;
+}
+.object-left-bottom {
+ object-position: left bottom;
+}
+.object-left-top {
+ object-position: left top;
+}
+.object-right {
+ object-position: right;
+}
+.object-right-bottom {
+ object-position: right bottom;
+}
+.object-right-top {
+ object-position: right top;
+}
+.object-top {
+ object-position: top;
+}
+.\!object-bottom {
+ object-position: bottom !important;
+}
+.\!object-center {
+ object-position: center !important;
+}
+.\!object-left {
+ object-position: left !important;
+}
+.\!object-left-bottom {
+ object-position: left bottom !important;
+}
+.\!object-left-top {
+ object-position: left top !important;
+}
+.\!object-right {
+ object-position: right !important;
+}
+.\!object-right-bottom {
+ object-position: right bottom !important;
+}
+.\!object-right-top {
+ object-position: right top !important;
+}
+.\!object-top {
+ object-position: top !important;
+}